// // OpenFileDialog.h // Tracks // // Created by User on 5/8/14. // // #import #import "OpenFileDialogProxy.h" // An Objective-C class that needs to be accessed from C++ @interface FileDialog : NSObject { } // The Objective-C member function you want to call from C++ + (NSString*) ClassSaveFileDialog:(NSString *) title withArg2:(NSString *)path; + (NSString*) ClassOpenFileDialog:(NSString *) title withArg2:(NSString *)path; + (NSString*) ClassChooseFolderDialog:(NSString *) title withArg2:(NSString *)path; @end