summaryrefslogtreecommitdiff
path: root/ace/Naming_Context.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-18 19:00:52 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-04-18 19:00:52 +0000
commit8aa5fa8ce33fcc426ef3d259cd530fd3f80bb1eb (patch)
treeb921addb999999bbf260b9defac3354d81b135b7 /ace/Naming_Context.h
parent8176bc40a972d1310881142f3f7c824617860b74 (diff)
downloadATCD-8aa5fa8ce33fcc426ef3d259cd530fd3f80bb1eb.tar.gz
removed trailing ';' at end of ACE_FACTORY_DECLARE.
Diffstat (limited to 'ace/Naming_Context.h')
-rw-r--r--ace/Naming_Context.h58
1 files changed, 28 insertions, 30 deletions
diff --git a/ace/Naming_Context.h b/ace/Naming_Context.h
index ce7afd246da..ddb1b39e54c 100644
--- a/ace/Naming_Context.h
+++ b/ace/Naming_Context.h
@@ -1,8 +1,6 @@
/* -*- C++ -*- */
// $Id$
-/*-*- C++ -*- */
-
// ============================================================================
//
// = LIBRARY
@@ -69,7 +67,7 @@ public:
// ACE_Lite_MMap_Memory_Pool. By default we use ACE_MMap_Memory_Pool.
int open (Context_Scope_Type scope_in = ACE_Naming_Context::PROC_LOCAL,
- int light = 0);
+ int light = 0);
// Specifies the scope of this namespace, opens and memory-maps the
// associated file (if accessible) or contacts the dedicated name
// server process for NET_LOCAL namespace. Note that <light>
@@ -102,25 +100,25 @@ public:
// Returns the ACE_Name_Options associated with the Naming_Context
int bind (const ACE_WString &name_in,
- const ACE_WString &value_in,
- const char *type_in = "");
+ const ACE_WString &value_in,
+ const char *type_in = "");
// Bind a new name to a naming context (Wide character strings).
int bind (const char *name_in,
- const char *value_in,
- const char *type_in = "");
+ const char *value_in,
+ const char *type_in = "");
// Bind a new name to a naming context ( character strings).
int rebind (const ACE_WString &name_in,
- const ACE_WString &value_in,
- const char *type_in = "");
+ const ACE_WString &value_in,
+ const char *type_in = "");
// Overwrite the value or type of an existing name in a
// ACE_Naming_Context or bind a new name to the context, if it
// didn't exist yet. (Wide charcter strings interface).
int rebind (const char *name_in,
- const char *value_in,
- const char *type_in = "");
+ const char *value_in,
+ const char *type_in = "");
// Overwrite the value or type of an existing name in a
// ACE_Naming_Context or bind a new name to the context, if it
// didn't exist yet. ( charcter strings interface)
@@ -134,86 +132,86 @@ public:
// interface).
int resolve (const ACE_WString &name_in,
- ACE_WString &value_out,
- char *&type_out);
+ ACE_WString &value_out,
+ char *&type_out);
// Get value and type of a given name binding (Wide chars). The
// caller is responsible for deleting both <value_out> and <type_out>!
int resolve (const char *name_in,
- ACE_WString &value_out,
- char *&type_out);
+ ACE_WString &value_out,
+ char *&type_out);
// Get value and type of a given name binding (Wide chars output).
// The caller is responsible for deleting both <value_out> and
// <type_out>!
int resolve (const char *name_in,
- char *&value_out,
- char *&type_out);
+ char *&value_out,
+ char *&type_out);
// Get value and type of a given name binding ( chars ). The caller
// is responsible for deleting both <value_out> and <type_out>!
int list_names (ACE_PWSTRING_SET &set_out,
- const ACE_WString &pattern_in);
+ const ACE_WString &pattern_in);
// Get a set of names matching a specified pattern (wchars). Matching
// means the names must begin with the pattern string.
int list_names (ACE_PWSTRING_SET &set_out,
- const char *pattern_in);
+ const char *pattern_in);
// Get a set of names matching a specified pattern (chars). Matching
// means the names must begin with the pattern string.
int list_values (ACE_PWSTRING_SET &set_out,
- const ACE_WString &pattern_in);
+ const ACE_WString &pattern_in);
// Get a set of values matching a specified pattern (wchars). Matching
// means the values must begin with the pattern string.
int list_values (ACE_PWSTRING_SET &set_out,
- const char *pattern_in);
+ const char *pattern_in);
// Get a set of values matching a specified pattern (chars). Matching
// means the values must begin with the pattern string.
int list_types (ACE_PWSTRING_SET &set_out,
- const ACE_WString &pattern_in);
+ const ACE_WString &pattern_in);
// Get a set of types matching a specified pattern (wchars). Matching
// means the types must begin with the pattern string.
int list_types (ACE_PWSTRING_SET &set_out,
- const char *pattern_in);
+ const char *pattern_in);
// Get a set of types matching a specified pattern (chars). Matching
// means the types must begin with the pattern string.
virtual int list_name_entries (ACE_BINDING_SET &set_out,
- const ACE_WString &pattern_in);
+ const ACE_WString &pattern_in);
// Get a set of names matching a specified pattern (wchars). Matching
// means the names must begin with the pattern string. Returns the
// complete binding associated each pattern match.
virtual int list_name_entries (ACE_BINDING_SET &set_out,
- const char *pattern_in);
+ const char *pattern_in);
// Get a set of names matching a specified pattern (wchars). Matching
// means the names must begin with the pattern string. Returns the
// complete binding associated each pattern match.
virtual int list_value_entries (ACE_BINDING_SET &set_out,
- const ACE_WString &pattern_in);
+ const ACE_WString &pattern_in);
// Get a set of values matching a specified pattern (wchars). Matching
// means the values must begin with the pattern string. Returns the
// complete binding associated each pattern match.
virtual int list_value_entries (ACE_BINDING_SET &set_out,
- const char *pattern_in);
+ const char *pattern_in);
// Get a set of values matching a specified pattern (wchars). Matching
// means the values must begin with the pattern string. Returns the
// complete binding associated each pattern match.
virtual int list_type_entries (ACE_BINDING_SET &set_out,
- const ACE_WString &pattern_in);
+ const ACE_WString &pattern_in);
// Get a set of types matching a specified pattern (wchars). Matching
// means the types must begin with the pattern string. Returns the
// complete binding associated each pattern match.
virtual int list_type_entries (ACE_BINDING_SET &set_out,
- const char *pattern_in);
+ const char *pattern_in);
// Get a set of types matching a specified pattern (wchars). Matching
// means the types must begin with the pattern string. Returns the
// complete binding associated each pattern match.
@@ -324,6 +322,6 @@ private:
// The context in which the naming database will be created.
};
-ACE_FACTORY_DECLARE (ACE, ACE_Naming_Context);
+ACE_FACTORY_DECLARE (ACE, ACE_Naming_Context)
#endif /* ACE_NAMING_CONTEXT_H */