mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
27 lines
505 B
C++
27 lines
505 B
C++
#ifndef INIREADER_H
|
|
|
|
#define INIREADER_H
|
|
//using namespace std;
|
|
class CIniReader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CIniReader(char* szFileName);
|
|
|
|
int ReadInteger(char* szSection, char* szKey, int iDefaultValue);
|
|
|
|
float ReadFloat(char* szSection, char* szKey, float fltDefaultValue);
|
|
|
|
bool ReadBoolean(char* szSection, char* szKey, bool bolDefaultValue);
|
|
|
|
char* ReadString(char* szSection, char* szKey, const char* szDefaultValue);
|
|
|
|
private:
|
|
|
|
char m_szFileName[255];
|
|
|
|
};
|
|
|
|
#endif//INIREADER_H
|