📄 ftapp_analyzer_main.cpp
字号:
/* -*- C++ -*- */
//=============================================================================
/**
* @file FTAPP_Analyzer_Main.cpp
*
* FTAPP_Analyzer_Main.cpp,v 1.2 2003/12/22 01:44:38 wilson_d Exp
*
* This file is part of Fault Tolerant CORBA.
* This file provides the main routine for a stub FaultAnalyzer
*
* @author Dale Wilson <wilson_d@ociweb.com>
*/
//=============================================================================
#include <tao/Utils/Server_Main.h>
#include "StubFaultAnalyzer.h"
int ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
TAO::Utils::Server_Main<StubFaultAnalyzer> server_run("FaultAnalyzer");
return server_run.run(argc, argv);
}
///////////////////////////////////
// Template instantiation for
// inept compilers.
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class TAO::Utils::Server_Main<StubFaultAnalyzer>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
# pragma instantiate TAO::Utils::Server_Main<StubFaultAnalyzer>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -