diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-07 16:23:30 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-07 16:23:30 +0000 |
commit | fb860ded9d0b326b5e3ac3930878dfa0aac4238e (patch) | |
tree | fcdfd2aeab607f4b088400df6225eac89b363f94 /cpp/src/Ice/PropertiesI.h | |
parent | Release mode updates. (diff) | |
download | ice-fb860ded9d0b326b5e3ac3930878dfa0aac4238e.tar.bz2 ice-fb860ded9d0b326b5e3ac3930878dfa0aac4238e.tar.xz ice-fb860ded9d0b326b5e3ac3930878dfa0aac4238e.zip |
addPropertyPrefix
Diffstat (limited to 'cpp/src/Ice/PropertiesI.h')
-rw-r--r-- | cpp/src/Ice/PropertiesI.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/Ice/PropertiesI.h b/cpp/src/Ice/PropertiesI.h index 0a4027d18d6..255f7f0fb46 100644 --- a/cpp/src/Ice/PropertiesI.h +++ b/cpp/src/Ice/PropertiesI.h @@ -12,6 +12,7 @@ #define ICE_PROPERTIES_I_H #include <Ice/Properties.h> +#include <set> namespace Ice { @@ -23,6 +24,7 @@ public: virtual std::string getProperty(const std::string&); virtual void setProperty(const std::string&, const std::string&); virtual PropertiesPtr clone(); + static void addArgumentPrefix(const std::string&); private: @@ -37,6 +39,7 @@ private: void parseLine(const std::string&); std::map<std::string, std::string> _properties; + static std::set<std::string> _argumentPrefixes; }; } |