blob: 56eb06ede4df13d9def68763d087c26178486b63 (
plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
|
#ifndef CONF_PAIR_H
#define CONF_PAIR_H
#include <stdint.h>
#include <string>
#include <sstream>
#include "confpairbase.h"
/**
*
*/
template<class T>
class ConfPair : public ConfPairBase
{
public:
ConfPair( const std::string &sName ) :
sName( sName )
{ }
virtual ~ConfPair()
{ }
T &value()
{
return tValue;
}
const std::string &name()
{
return sName;
}
virtual void setFromString( const std::string &sStr )
{
std::stringstream(sStr) >> tValue;
}
virtual std::string getAsString()
{
std::stringstream tmp;
tmp << tValue;
return tmp.str();
}
private:
std::string sName;
T tValue;
};
template<>
void ConfPair<std::string>::setFromString( const std::string &sStr )
{
tValue = sStr;
}
template<>
std::string ConfPair<std::string>::getAsString()
{
return tValue;
}
template<>
void ConfPair<bool>::setFromString( const std::string &sStr )
{
if( !strcasecmp( sStr.c_str(), "true" ) ||
!strcasecmp( sStr.c_str(), "yes" ) ||
!strcasecmp( sStr.c_str(), "on" ) )
tValue = true;
else
tValue = false;
}
template<>
std::string ConfPair<bool>::getAsString()
{
if( tValue == true )
return "True";
return "False";
}
#endif
|