Preparing to add widget support
[RExecServer.git] / DeviceWindowController.h
blob5789dc5b883a4db15d4c574141f58a275e6d69c4
1 //
2 // DeviceWindowController.h
3 // RExecServer
4 //
5 // Created by Byron Ellis on 6/29/07.
6 // Copyright 2007 __MyCompanyName__. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "DeviceView.h"
11 #import "RDevice.h"
13 @interface DeviceWindowController : NSWindowController<RDeviceDelegate> {
14 IBOutlet DeviceView *deviceView;
15 RDevice *device;
18 - (void)setDevice:(RDevice*)aDevice;
20 @end