/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : DropWeightServer.h                                            */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#ifndef _SimulatedCameraServer_H
#define _SimulatedCameraServer_H
#include <process.h>
#include "CameraIF_SK.h"
#include "CameraOutput.h"
#include "CameraLog.h"

class SimulatedCameraServer: public CameraIF_SK {

   friend class CameraLog;

public:

  SimulatedCameraServer(const char *name);
  ~SimulatedCameraServer();


protected:

  virtual int spawnAuxTasks();

private:

  CameraOutput *_cameraOutput;

  CameraLog *_log;

  const char *_driverName;
};

#endif
