blob: a53db716c221250d66f4c196e26b0dd999cd6581 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
%{
#include <stdio.h>
#include <string>
#include <map>
#include <defs.h>
#include <multimapwdef.h>
#include "swconfig.h"
using namespace sword;
%}
%include "stl.i"
%include "std_vector.i"
%include "std_string.i"
%include "typemaps.i"
typedef multimapwithdefault < string, string, less < string > > ConfigEntMap;
typedef map < string, ConfigEntMap, less < string > > SectionMap;
class SWConfig {
public:
//member data
string filename;
SectionMap Sections;
//member functions
SWConfig(const char *ifilename);
virtual ~ SWConfig();
virtual void Load();
virtual void Save();
%extend {
void set(const char* group, const char* entry, const char* value) {
self->Sections[group][entry] = value;
};
const char* get(const char* group, const char* entry) {
return self->Sections[group][entry].c_str();
};
}
};
|