ardour/gtk2_ardour/OpenFileDialog.h
Nikolay Polyanovskii dd8a0e631d Change "new session dialogs" and "open saved session dialog" gdk's windows on MacOS's specific windows
[git-p4: depot-paths = "//Abdaw/dev_main/tracks/": change = 459947]
2014-05-13 05:19:55 -05:00

24 lines
418 B
Objective-C

//
// 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;
+ (NSString*) ClassOpenFileDialog:(NSString *) title;
@end