ardour/gtk2_ardour/OpenFileDialog.h

26 lines
554 B
C
Raw Normal View History

//
// OpenFileDialog.h
// Tracks
//
// Created by User on 5/8/14.
//
//
#import <Foundation/Foundation.h>
#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