/* -*- C++ -*- */ //============================================================================= /** * @file Fault_Detector_Main.cpp * * This file is part of Fault Tolerant CORBA. * This file provides the main routine for a process that * implements the FaultDetectorFactory interface and manages * a set of FaultDetectors. * * @author Dale Wilson */ //============================================================================= #include "tao/Utils/Server_Main.h" #include "FT_FaultDetectorFactory_i.h" int ACE_TMAIN (int argc, ACE_TCHAR *argv[]) { TAO::Utils::Server_Main server_main("TAO_FaultDetector"); return server_main.run(argc, argv); }