/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : simCrossbow.cc                                                */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#include "SimulatedCrossbow.h"
#include "Syslog.h"

int main(int argc, char **argv)
{
  try {
    SimulatedCrossbow *server = new SimulatedCrossbow();
    server->run();
  }
  catch (...) {
    Syslog::write("simCrossbow - caught exception!\n");
  }

  return 0;
}

