Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / ACE / apps / JAWS / clients / Caching / URL_Locator.cpp
blobe06c5203217b45ebeab10a918d8c539c2d890ed2
1 #if !defined (ACE_URL_LOCATOR_C)
2 #define ACE_URL_LOCATOR_C
4 #include "URL_Locator.h"
6 const char * const
7 ACE_URL_Locator::opname[] =
8 // Human readable operation name
10 "Query",
11 "Export",
12 "Withdraw",
13 "Describe",
14 "Modify",
15 "Invalid Operation"
18 const char * const
19 ACE_URL_Locator::selection_name[] =
21 "None",
22 "Some",
23 "All",
24 "Invalid Selection"
27 const char * const
28 ACE_URL_Locator::err_name[] =
30 "No error",
31 "Offer already exist",
32 "no such offer",
33 "invalid argument",
34 "function not implemented",
35 "unknown error"
38 ACE_URL_Locator::~ACE_URL_Locator ()
42 const char *
43 ACE_URL_Locator::error_status ()
45 return "Not implemented yet.";
48 #endif /* ACE_URL_LOCATOR_C */