< prev index next >

src/jdk.jpackage/share/native/libapplauncher/PropertyFile.h

Print this page

        

*** 40,58 **** public: PropertyFile(void); PropertyFile(const TString FileName); PropertyFile(OrderedMap<TString, TString> Value); ! PropertyFile(const PropertyFile &Value); virtual ~PropertyFile(void); bool IsModified(); bool GetReadOnly(); void SetReadOnly(bool Value); - //void Assign(std::map<TString, TString> Value); - bool LoadFromFile(const TString FileName); bool SaveToFile(const TString FileName, bool ownerOnly = true); bool SetValue(const TString Key, TString Value); bool RemoveKey(const TString Key); --- 40,56 ---- public: PropertyFile(void); PropertyFile(const TString FileName); PropertyFile(OrderedMap<TString, TString> Value); ! PropertyFile(PropertyFile &Value); virtual ~PropertyFile(void); bool IsModified(); bool GetReadOnly(); void SetReadOnly(bool Value); bool LoadFromFile(const TString FileName); bool SaveToFile(const TString FileName, bool ownerOnly = true); bool SetValue(const TString Key, TString Value); bool RemoveKey(const TString Key);
*** 60,68 **** OrderedMap<TString, TString> GetData(); // IPropertyContainer virtual bool GetValue(const TString Key, TString& Value); virtual size_t GetCount(); - // virtual std::vector<TString> GetKeys(); }; #endif // PROPERTYFILE_H --- 58,65 ----
< prev index next >