blob: 6230e2f57a379d343a6096d9040ddcc03f7f984d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "../incl.h"
#ifndef LANG_H
#define LANG_H
#include "../name.h"
#include "../maps/nmap.h"
using namespace std;
class lang : public nmap<string,string>, name
{
private:
public:
// public methods:
lang ( string s_lang ); // standard constructor.
~lang(); // standard destructor.
virtual void parse( ); // parses the config file.
};
#endif
|