blob: 253075668be8681322cb5073cfc7598667b763f1 (
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
|
#ifndef CONF_PAIR_BASE_H
#define CONF_PAIR_BASE_H
#include <stdint.h>
#include <string>
#include <ostream>
#include <istream>
class ConfPairBase
{
public:
ConfPairBase();
virtual ~ConfPairBase();
virtual void setFromString( const std::string &sStr )=0;
virtual std::string getAsString()=0;
ConfPairBase &operator=( const std::string &s );
private:
};
#endif
|