This commit is contained in:
Glenn Maynard
2005-11-03 16:38:15 +00:00
parent 7c803bdf1c
commit 43acb27d00
+5 -5
View File
@@ -10,11 +10,6 @@ class RageFileBasic;
class IniFile : public XNode class IniFile : public XNode
{ {
private:
CString m_sPath;
mutable CString m_sError;
public: public:
IniFile(); IniFile();
@@ -46,6 +41,11 @@ public:
* reading an INI where [foo] is an alias to [main]. If to already * reading an INI where [foo] is an alias to [main]. If to already
* exists, nothing happens. */ * exists, nothing happens. */
bool RenameKey( const CString &from, const CString &to ); bool RenameKey( const CString &from, const CString &to );
private:
CString m_sPath;
mutable CString m_sError;
}; };
#endif #endif