Files
2016-09-15 10:13:52 -05:00

18 lines
294 B
Objective-C
Executable File

#import <Cocoa/Cocoa.h>
@class AsyncSocket;
@interface AppController : NSObject
{
AsyncSocket *listenSocket;
NSMutableArray *connectedSockets;
BOOL isRunning;
IBOutlet id logView;
IBOutlet id portField;
IBOutlet id startStopButton;
}
- (IBAction)startStop:(id)sender;
@end