url_locator.cpp
来自「ace开发环境 用来开发网络程序 其运用了设计模式、多平台、C++等多种知识」· C++ 代码 · 共 53 行
CPP
53 行
// $Id: URL_Locator.cpp 68554 2005-10-07 07:41:58Z jwillemsen $#if !defined (ACE_URL_LOCATOR_C)#define ACE_URL_LOCATOR_C#include "URL_Locator.h"ACE_RCSID(Caching, URL_Locator, "$Id: URL_Locator.cpp 68554 2005-10-07 07:41:58Z jwillemsen $")const char * constACE_URL_Locator::opname[] =// Human readable operation name{ "Query", "Export", "Withdraw", "Describe", "Modify", "Invalid Operation"};const char * constACE_URL_Locator::selection_name[] ={ "None", "Some", "All", "Invalid Selection"};const char * constACE_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 + -
显示快捷键?