main.cpp
来自「最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.」· C++ 代码 · 共 27 行
CPP
27 行
// $Id: main.cpp 80826 2008-03-04 14:51:23Z wotte $
// Test the client-side of the ACE Name Server...
#include "ace/Service_Config.h"
#include "ace/Log_Msg.h"
#include "Dump_Restore.h"
ACE_RCSID(Dump_Restore, main, "$Id: main.cpp 80826 2008-03-04 14:51:23Z wotte $")
int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
ACE_Service_Config daemon (argv[0]);
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("entering main\n")));
// Get a handler
Dump_Restore client_handler (argc, argv);
ACE_Reactor::run_event_loop ();
/* NOTREACHED */
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("leaving main\n")));
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?