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