blob: 7d0b807aad7728d6b4fcebef36cf51e0e7b51d9c (
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
|
// class conf declaration. this class parses the server config file.
#ifndef s_conf_H
#define s_conf_H
#include "incl.h"
#include "cont.h"
#include "name.h"
using namespace std;
class conf : public cont, name
{
private:
public:
// public methods:
conf ( string s_conf ); // standard constructor.
~conf(); // standard destructor.
virtual void parse( ); // parses the config file.
};
#endif
|