diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-04-24 21:13:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-04-24 21:13:00 +0000 |
commit | 5409c1ecef0f226dedc77721c0d2fc8dfe9e85de (patch) | |
tree | 97ba75bc47a143726d6d8382be3a462e51716700 /cpp/src/Ice/PropertiesI.h | |
parent | cleaning up sample impls (diff) | |
download | ice-5409c1ecef0f226dedc77721c0d2fc8dfe9e85de.tar.bz2 ice-5409c1ecef0f226dedc77721c0d2fc8dfe9e85de.tar.xz ice-5409c1ecef0f226dedc77721c0d2fc8dfe9e85de.zip |
merging from plugins branch
Diffstat (limited to 'cpp/src/Ice/PropertiesI.h')
-rw-r--r-- | cpp/src/Ice/PropertiesI.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/cpp/src/Ice/PropertiesI.h b/cpp/src/Ice/PropertiesI.h index d23457d59c5..5c1ea0656a2 100644 --- a/cpp/src/Ice/PropertiesI.h +++ b/cpp/src/Ice/PropertiesI.h @@ -29,23 +29,20 @@ public: virtual StringSeq getProperties(const std::string&); virtual void setProperty(const std::string&, const std::string&); virtual StringSeq getCommandLineOptions(); + virtual StringSeq parseCommandLineOptions(const std::string&, const StringSeq&); + virtual void load(const std::string&); virtual PropertiesPtr clone(); - static void addArgumentPrefix(const std::string&); private: + PropertiesI(); PropertiesI(int&, char*[]); - PropertiesI(int&, char*[], const std::string& file); + friend ICE_API PropertiesPtr createProperties(); friend ICE_API PropertiesPtr createProperties(int&, char*[]); - friend ICE_API PropertiesPtr createPropertiesFromFile(int&, char*[], const std::string&); - void parseArgs(int&, char*[]); - void load(const std::string&); - void parse(std::istream&); void parseLine(const std::string&); std::map<std::string, std::string> _properties; - static std::set<std::string> _argumentPrefixes; }; } |