summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-17 15:35:57 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-17 15:35:57 +0000
commit47a516b6d08571db1dbd615a4b287f77a4d2b672 (patch)
tree5f9092e3dd89bb6f175778ca271ea9e18700aff2
parent693f358d28e680fe68e6be59c02bb9a10d02a598 (diff)
downloadATCD-47a516b6d08571db1dbd615a4b287f77a4d2b672.tar.gz
ChangeLogTag:Thu Apr 17 15:32:42 UTC 2003 Don Hinton <dhinton@dresystems.com>
-rw-r--r--ChangeLog5
-rw-r--r--ace/Configuration.h10
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d3710fdb1c1..fa80de2aa51 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 17 15:32:42 UTC 2003 Don Hinton <dhinton@dresystems.com>
+
+ * ace/Configuration.h: Made NULL_String public instead of protected
+ member variable.
+
Thu Apr 17 08:23:19 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
* ace/Local_Name_Space.h (ACE_NS_String):
diff --git a/ace/Configuration.h b/ace/Configuration.h
index 20ce501e6be..2d2cbc177b4 100644
--- a/ace/Configuration.h
+++ b/ace/Configuration.h
@@ -385,6 +385,11 @@ public:
*/
int operator!=(const ACE_Configuration& rhs) const {return !(*this == rhs);}
+ /**
+ * * Represents the "NULL" string to simplify the internal logic.
+ * */
+ static ACE_TCHAR NULL_String_;
+
protected:
/// Default ctor
ACE_Configuration (void);
@@ -410,11 +415,6 @@ protected:
*/
int validate_value_name (const ACE_TCHAR* name);
- /**
- * Represents the "NULL" string to simplify the internal logic.
- */
- static ACE_TCHAR NULL_String_;
-
// Not used
ACE_Configuration (const ACE_Configuration& rhs);
ACE_Configuration& operator= (const ACE_Configuration& rhs);