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