blob: c766ba174e0b9ccd8d6877262f1359dbc65d9b8f (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef __PRACRO_FIELDNAMESCANNER_H__
#define __PRACRO_FIELDNAMESCANNER_H__
#include <map>
#include <vector>
#include <string>
#include <set>
typedef std::string fieldname_t;
typedef std::vector< fieldname_t > fieldnames_t;
typedef std::string template_name_t;
typedef std::map< template_name_t, fieldnames_t > templates_t;
templates_t scanfieldnames(std::set<std::string> &filter);
#endif
|