Initial
This commit is contained in:
18
mdiwin/INIFILE.HPP
Normal file
18
mdiwin/INIFILE.HPP
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user