2 //=============================================================================
4 * @file Fault_Detector_Main.cpp
6 * This file is part of Fault Tolerant CORBA.
7 * This file provides the main routine for a process that
8 * implements the FaultDetectorFactory interface and manages
9 * a set of FaultDetectors.
11 * @author Dale Wilson <wilson_d@ociweb.com>
13 //=============================================================================
15 #include "tao/Utils/Server_Main.h"
16 #include "FT_FaultDetectorFactory_i.h"
18 int ACE_TMAIN (int argc
, ACE_TCHAR
*argv
[])
20 TAO::Utils::Server_Main
<TAO::FT_FaultDetectorFactory_i
> server_main("TAO_FaultDetector");
21 return server_main
.run(argc
, argv
);