summaryrefslogtreecommitdiff
path: root/conf.h
blob: 6e2a8907db640c46b53ef1bc7443f52a30a12ab5 (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