-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascnconfig.cpp
69 lines (54 loc) · 966 Bytes
/
ascnconfig.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include "ascnconfig.h"
using namespace config;
/** SINGLE CONFIGURATION ITEM **/
ConfigItem::ConfigItem()
{
}
ConfigItem::ConfigItem(std::string contents)
{
m_content.s = contents;
}
ConfigItem::ConfigItem(int contents)
{
m_content.i = contents;
}
ConfigItem::ConfigItem(double contents)
{
m_content.r = contents;
}
ConfigItem::ConfigItem(bool contents)
{
m_content.b = contents;
}
std::string ConfigItem::getString()
{
return m_content.s;
}
int ConfigItem::getInt()
{
return m_content.i;
}
double ConfigItem::getReal()
{
return m_content.r;
}
bool ConfigItem::getBool()
{
return m_content.b;
}
/** CONFIG OBJECT **/
ascnconfig::ascnconfig (std::string appName, bool importFromFile)
{
m_app = appName;
m_error = kNone;
if (importFromFile)
loadConfig();
}
ascnconfig::ascnconfig (std::string orgName, std::string appName, bool importFromFile)
{
m_org = orgName;
m_app = appName;
m_error = kNone;
if (importFromFile)
loadConfig();
}