1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// $Id$
#if !defined (ACE_URL_LOCATOR_C)
#define ACE_URL_LOCATOR_C
#include "URL_Locator.h"
#if !defined (__ACE_INLINE__)
#include "URL_Locator.i"
#endif
ACE_RCSID(Caching, URL_Locator, "$Id$")
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 */
|