ardour/gtk2_ardour/open_file_dialog.h
Nikolay Polyanovskii 69f4341e86 [Summary] only rename files and variables
[git-p4: depot-paths = "//Abdaw/dev_main/tracks/": change = 462577]
2014-05-22 03:10:26 -05:00

25 lines
566 B
Objective-C

//
// OpenFileDialog.h
// Tracks
//
// Created by User on 5/8/14.
//
//
#import <Foundation/Foundation.h>
#import "open_file_dialog_proxy.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*) class_save_file_dialog:(NSString *) title withArg2:(NSString *)path;
+ (NSString*) class_open_file_dialog:(NSString *) title withArg2:(NSString *)path;
+ (NSString*) class_choose_folder_dialog:(NSString *) title withArg2:(NSString *)path;
@end