blob: a3b50226bbe15a39e70b04edfff7ac59d935d4b1 (
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 CONF_H
#define 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
|