2 //=============================================================================
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
);