//=========================================================================
// Summary  : Main file for crossbow data server
// Filename : _crossbowServer.cc
// Author   : Aaron Marsh
// Project  : 
// Revision : 1
// Created  : 2000/08/19
// Modified : 2000/08/19
//=========================================================================
// Description :
//=========================================================================

#include "SupervisorServer.h"
#include "VehicleConfigurator.h"
#include "Syslog.h"
#include "System.h"

int main(int argc, char **argv)
{
    try {
	VehicleConfigurator::setName("supervisor");
	SupervisorServer *supervisorServer = new SupervisorServer(); 
	supervisorServer->run();
    }
    catch (SharedObject::Error e) {
	Syslog::write("caught exception: %s\n", e.msg);
    }
    catch (...) {
	Syslog::write("caught exception!\n");
    }
   
     
    return 0;
}

