18 lines
431 B
C++
18 lines
431 B
C++
#ifndef _INIFILE_HPP_
|
|
#define _INIFILE_HPP_
|
|
#include <mdiwin/profile.hpp>
|
|
class IniFile : public Profile
|
|
{
|
|
public:
|
|
IniFile();
|
|
virtual ~IniFile();
|
|
void meshDirectory(String &newMeshDirectory);
|
|
String meshDirectory(int putTrailer=TRUE);
|
|
void projectDirectory(String &newProjectDirectory);
|
|
String projectDirectory(int putTrailer=TRUE);
|
|
private:
|
|
String mSettingsHeading;
|
|
String mProjDirString;
|
|
String mMeshDirString;
|
|
};
|
|
#endif |