/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : layeredControl.cc                                             */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#include <stdio.h>
#include <process.h>
#include "BogusLayeredControl.h"
#include "LayeredControlServer.h"

void spawnServer();

main(int argc, char **argv)
{
  BogusLayeredControl *layeredControl = 
    new BogusLayeredControl("layeredControl");

  layeredControl->run();
}


