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

int main(int argc, char **argv)
{
  Boolean simulated = False;
  Boolean error = False;

  try {
    SimulatedCompass *server = new SimulatedCompass();
    server->run();
  }
  catch (SharedObject::Error e) {
    Syslog::write("simCompass - caught exception: %s\n", e.msg);
  }
  catch (...) {
    Syslog::write("simCompass - caught exception!\n");
  }

  return 0;
}

