// // MPT_DO_Server.h // AUCoderDemo // // Created by Andrew Salamon on 6/20/08. // Copyright 2008 Machine Perception Laboratory, University of California San Diego.. All rights reserved. // #import "MPT_DO_Protocols.h" @class MPT_CERT; @class MPT_Scheduler; @interface MPT_DO_Server : NSObject < CERTServer > { NSString *serverID; MPT_CERT *cert; NSDistantObject *clientProxy; NSLock *lock; MPT_Scheduler *scheduler; id pluginController; NSConnection *connection; } - (id)initWithScheduler:(MPT_Scheduler *)_scheduler andPC:(id)_pluginController; - (BOOL)startWithPort:(unsigned short)port; - (void)end; - (MPT_Scheduler *)scheduler; - (void)setScheduler:(MPT_Scheduler *)value; - (id)pluginController; - (void)setPluginController:(id)value; @end