diff options
author | Michi Henning <michi@zeroc.com> | 2004-12-08 06:11:21 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-12-08 06:11:21 +0000 |
commit | 37fa0d032659d3291c81628f9eb85fac538cb342 (patch) | |
tree | dd8acd3eecce7e1cb2df6f908c089337ae01ab02 /cpp/src/Ice/PropertiesI.h | |
parent | Fixed bug in parsing for --Ice.Config: previous code dereferenced an (diff) | |
download | ice-37fa0d032659d3291c81628f9eb85fac538cb342.tar.bz2 ice-37fa0d032659d3291c81628f9eb85fac538cb342.tar.xz ice-37fa0d032659d3291c81628f9eb85fac538cb342.zip |
Added regular expression matching to property checking code.
Diffstat (limited to 'cpp/src/Ice/PropertiesI.h')
-rw-r--r-- | cpp/src/Ice/PropertiesI.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/Ice/PropertiesI.h b/cpp/src/Ice/PropertiesI.h index ac6a611224b..1ce58dc3b74 100644 --- a/cpp/src/Ice/PropertiesI.h +++ b/cpp/src/Ice/PropertiesI.h @@ -46,6 +46,8 @@ private: void loadConfig(); + static bool match(const std::string&, const std::string&); + std::map<std::string, std::string> _properties; }; |