summaryrefslogtreecommitdiff
path: root/ace/Local_Name_Space.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
commita5fdebc5f6375078ec1763850a4ca23ec7fe6458 (patch)
treebcf0a25c3d45a209a6e3ac37b233a4812f29c732 /ace/Local_Name_Space.h
downloadATCD-a5fdebc5f6375078ec1763850a4ca23ec7fe6458.tar.gz
Initial revision
Diffstat (limited to 'ace/Local_Name_Space.h')
-rw-r--r--ace/Local_Name_Space.h113
1 files changed, 113 insertions, 0 deletions
diff --git a/ace/Local_Name_Space.h b/ace/Local_Name_Space.h
new file mode 100644
index 00000000000..e02d9c288b6
--- /dev/null
+++ b/ace/Local_Name_Space.h
@@ -0,0 +1,113 @@
+/* -*- C++ -*- */
+// $Id$
+
+/*-*- C++ -*- */
+
+// ============================================================================
+//
+// = LIBRARY
+// ACE
+//
+// = FILENAME
+// ACE_Local_Name_Space
+//
+// = AUTHOR
+// Prashant Jain (pjain@cs.wustl.edu), Irfan Pyarali
+// (irfan@wuerl.wustl.edu), and Douglas C. Schmidt
+// (schmidt@cs.wustl.edu).
+//
+// ============================================================================
+
+#if !defined (ACE_LOCAL_NAME_SPACE_H)
+#define ACE_LOCAL_NAME_SPACE_H
+
+#include "ace/Map_Manager.h"
+#include "ace/Service_Config.h"
+#include "ace/SString.h"
+#include "ace/Set.h"
+#include "ace/Malloc.h"
+#include "ace/Synch.h"
+
+class ACE_Export ACE_NS_String
+ // = TITLE
+ // This class and ACE_NS_Internal are used as Adapters to work
+ // with the Map_Manager.
+ //
+ // = DESCRIPTION
+ // In order to work correctly, this class must be able to
+ // convert back and forth with ACE_WStrings. Note that this
+ // class must not have a destructor since otherwise we'll have
+ // problems...
+{
+public:
+ // = Initialization.
+ ACE_NS_String (void);
+ // Default "no-op" constructor.
+
+ ACE_NS_String (ACE_USHORT16 *dst,
+ const ACE_USHORT16 *src,
+ size_t len);
+ // Initialization method.
+
+ ACE_NS_String (const ACE_WString &);
+ // Converts an ACE_WString to an ACE_NS_String;
+
+ operator ACE_WString () const;
+ // Converts an ACE_NS_String to fresh copy of an ACE_WString;
+
+ char *char_rep (void) const;
+ // Return the ASCII character representation.
+
+ int strstr (const ACE_NS_String &) const;
+ // Matches on substrings.
+
+ int operator == (const ACE_NS_String &) const;
+ // Compare an ACE_NS_String.
+
+ size_t len (void) const;
+ // Returns length of the string
+
+ ACE_USHORT16 *fast_rep (void) const;
+ // Returns the underlying representation.
+
+private:
+ size_t len_;
+ // Length of the string.
+
+ ACE_USHORT16 *rep_;
+ // This actually points into shared/persistent memory.
+};
+
+class ACE_Export ACE_NS_Internal
+ // = TITLE
+ // This class and ACE_NS_String are used as Adapters to work
+ // with the Map_Manager.
+{
+public:
+ ACE_NS_Internal (void);
+ // No-op constructor.
+
+ ACE_NS_Internal (ACE_NS_String &value, const char *type);
+ // Constructor.
+
+ int operator == (const ACE_NS_Internal &) const;
+ // Compare an ACE_NS_Internal
+
+ ACE_NS_String value (void);
+ // Return value.
+
+ const char *type (void);
+ // Return type.
+
+private:
+ ACE_NS_String value_;
+ // Contains the value of the string.
+
+ const char *type_;
+ // Contains the type of the string.
+};
+
+// Include the ACE_Local_Name_Space templates stuff at this point.
+#include "ace/Local_Name_Space_T.h"
+
+#endif /* ACE_LOCAL_NAME_SPACE_H */