- bool Read(const wxString& key, wxString* str);
- bool Read(const wxString& key, wxString* str,
- const wxString& defaultVal);
- wxString Read(const wxString& key,
- const
- wxString& defaultVal);
- bool Read(const wxString& key, long* l);
- bool Read(const wxString& key, long* l, long defaultVal);
- bool Read(const wxString& key, double* d);
- bool Read(const wxString& key, double* d, double defaultVal);
- bool Read(const wxString& key, bool* b);
- bool Read(const wxString& key, bool* d, bool defaultVal);
- bool Read(const wxString& key, wxMemoryBuffer* buf);
- bool Read(const wxString& key, T* value);
- bool Read(const wxString& key, T* value,
- T const& defaultVal);
+ bool Read(const wxString& key, wxString* str) const;
+ const bool Read(const wxString& key, wxString* str,
+ const wxString& defaultVal) const;
+ const wxString Read(const wxString& key,
+ const
+ wxString& defaultVal) const;
+ const bool Read(const wxString& key, long* l) const;
+ const bool Read(const wxString& key, long* l,
+ long defaultVal) const;
+ const bool Read(const wxString& key, double* d) const;
+ const bool Read(const wxString& key, double* d,
+ double defaultVal) const;
+ const bool Read(const wxString& key, bool* b) const;
+ const bool Read(const wxString& key, bool* d,
+ bool defaultVal) const;
+ const bool Read(const wxString& key, wxMemoryBuffer* buf) const;
+ const bool Read(const wxString& key, T* value) const;
+ const bool Read(const wxString& key, T* value,
+ T const& defaultVal) const;