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

int main(int argc, char **argv)
{
  SimulatedAhrs *server = 0;

  try {
    server = new SimulatedAhrs();
    server->run();
  }
  catch (Exception e) {
    Syslog::write("simAhrs - caught Exception: %s\n", e.msg);
  }
  catch (...) {
    Syslog::write("simAhrs - caught exception!\n");
  }

  return 0;
}

