FreeRDP/client/Mac/cli/AppDelegate.h

25 lines
407 B
C
Raw Normal View History

//
// 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;
2013-06-23 04:27:23 +04:00
rdpContext* context;
MRDPView* mrdpView;
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) rdpContext *context;
@end