-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathTemplate.h
39 lines (29 loc) · 971 Bytes
/
Template.h
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
#include <string>
#include <vector>
#include <map>
#include "Interface/Template.h"
#include "Interface/Table.h"
#include "Interface/Query.h"
class CTemplate : public ITemplate
{
public:
CTemplate(std::string pFile);
~CTemplate();
virtual void Reset(void);
virtual void setValue(std::string key, std::string value);
virtual ITable* getTable(std::string key);
virtual std::string getData(void);
virtual void addValueTable( IDatabase* db, const std::string &table);
private:
void AddDefaultReplacements(void);
bool FindValue(const std::string &key, std::string &value, bool dbs=false);
ITable *findTable(std::string key);
void transform(std::string &output);
ITable* createTableRecursive(std::string key);
std::string data;
std::string file;
std::vector<std::pair<std::string, std::string> > mReplacements;
ITable* mValuesRoot;
ITable* mCurrValues;
std::vector< std::pair<IDatabase*, IQuery*> > mTables;
};