mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 13:46:30 +01:00
25 lines
566 B
Objective-C
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
|
|
|
|
|