Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / orbsvcs / Fault_Detector / Fault_Detector_Main.cpp
blobf9dc68a735d4a551e47d80cd1f65ffa1158c9b67
1 /* -*- C++ -*- */
2 //=============================================================================
3 /**
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);