url_locator.cpp
来自「最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.」· C++ 代码 · 共 53 行
CPP
53 行
// $Id: URL_Locator.cpp 80826 2008-03-04 14:51:23Z wotte $
#if !defined (ACE_URL_LOCATOR_C)
#define ACE_URL_LOCATOR_C
#include "URL_Locator.h"
ACE_RCSID(Caching, URL_Locator, "$Id: URL_Locator.cpp 80826 2008-03-04 14:51:23Z wotte $")
const char * const
ACE_URL_Locator::opname[] =
// Human readable operation name
{
"Query",
"Export",
"Withdraw",
"Describe",
"Modify",
"Invalid Operation"
};
const char * const
ACE_URL_Locator::selection_name[] =
{
"None",
"Some",
"All",
"Invalid Selection"
};
const char * const
ACE_URL_Locator::err_name[] =
{
"No error",
"Offer already exist",
"no such offer",
"invalid argument",
"function not implemented",
"unknown error"
};
ACE_URL_Locator::~ACE_URL_Locator (void)
{
}
const char *
ACE_URL_Locator::error_status (void)
{
return "Not implemented yet.";
}
#endif /* ACE_URL_LOCATOR_C */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?