blob: 0b4411e807b7f10e74ce69159abcb1699b9b573f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef GEDIT_OSX_DELEGATE_H_
#define GEDIT_OSX_DELEGATE_H_
#import <Foundation/NSAppleEventManager.h>
@interface GeditOSXDelegate : NSObject
{
}
-(id) init;
-(void) openFiles:(NSAppleEventDescriptor*)event
withReply:(NSAppleEventDescriptor*)reply;
@end
#endif /* GEDIT_OSX_DELEGATE_H_ */
|