/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : ExternalCommsServer.h                                         */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#ifndef __ExternalCommsServer_H
#define __ExternalCommsServer_H

#include "ExternalCommsIF_SK.h"

class ExternalCommsServer : public ExternalCommsIF_SK {

public:

  ExternalCommsServer();
  ~ExternalCommsServer();

protected:

  virtual long setChannel(ExternalCommsIF::Channel channel);
  virtual void channel(ExternalCommsIF::Channel *channel);

  virtual int spawnAuxTasks();

  ExternalCommsIF::Channel _channel;
};


#endif

