00001 // 00002 // JTrekController.h 00003 // MacTrek 00004 // 00005 // Created by Aqua on 02/05/2006. 00006 // Copyright 2006 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import <Cocoa/Cocoa.h> 00010 #import "ClientController.h" 00011 #import "TaskWrapper.h" 00012 00013 // cannot derive from ClientController or will create duplicate universe 00014 @interface JTrekController : NSObject <TaskWrapperController> { 00015 00016 TaskWrapper *jtrek; 00017 NSTextView *logDestination; 00018 } 00019 00020 - (id)initWithTextView:(NSTextView *) logDestination; 00021 - (void)startJTrekAt:(NSString *)server port:(int)port; 00022 - (void)stopJTrek; 00023 00024 @end