FreeRDP/client/Mac/cli/AppDelegate.h
2013-07-19 16:33:20 -04:00

27 lines
434 B
Objective-C

//
// AppDelegate.h
// MacClient2
//
// Created by Benoît et Kathy on 2013-05-08.
//
//
#import <Cocoa/Cocoa.h>
#import <MacFreeRDP/MRDPView.h>
#import <MacFreeRDP/mfreerdp.h>
@interface AppDelegate : NSObject <NSApplicationDelegate>
{
@public
NSWindow* window;
rdpContext* context;
MRDPView* mrdpView;
}
- (void) rdpConnectError;
@property (assign) IBOutlet NSWindow *window;
@property (assign) rdpContext *context;
@end