blob: 1203dc01efa35f9a0d88712b42a3efda206f179d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "confpairbase.h"
ConfPairBase::ConfPairBase()
{
}
ConfPairBase::~ConfPairBase()
{
}
ConfPairBase &ConfPairBase::operator=( const std::string &s )
{
setFromString( s );
return *this;
}
|