Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / TAO / orbsvcs / Fault_Notifier / Fault_Notifier_Main.cpp
blob370416943a135a8c04f9653b75c7e76b023bb85a
1 /* -*- C++ -*- */
2 //=============================================================================
3 /**
4 * @file Fault_Notifier_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 FaultNotifier interface and manages
9 * a set of FaultNotifiers.
11 * @author Dale Wilson <wilson_d@ociweb.com>
13 //=============================================================================
15 #include "tao/Utils/Server_Main.h"
16 #include "FT_Notifier_i.h"
18 int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
20 TAO::Utils::Server_Main<TAO::FT_FaultNotifier_i> server_main("TAO_FaultNotifier");
21 return server_main.run(argc, argv);