module Objc2SwiftAssistant class SwiftFile_Generator attr_accessor :destination_root attr_accessor :source_file_set attr_accessor :swift_file_set #SwiftFileSet def initialize( destination_root, source_file_set ) end def map_sources_to_destinations @swift_file_set = SwiftFileSet.new( @destination_root ) @swift_file_set.mapFromObjCFileSet( @source_file_set ) end # Just add the commented .h and .m files to the destination file def concat_source_files end end end