Blame view

src/expressionParser/ParserToolbox.hh 844 Bytes
d6222ff6   Benjamin Renard   Parser: get list ...
1
2
3
4
5
6
7
8
9
10
11
/*
 * ParserToolbox.hh
 *
 * Created on: Mar 18, 2019
 * Author: AKKA
 */

#ifndef PARSERTOOLBOX_HH
#define PARSERTOOLBOX_HH

#include "Properties.hh"
0d5a1aa5   Benjamin Renard   Parser: add a fun...
12
#include "FunctionInfo.hh"
ea6be348   Benjamin Renard   Support arguments...
13
#include "ArgListInfo.hh"
93f280a8   Benjamin Renard   Implements templa...
14
#include "TemplateParamsInfo.hh"
d6222ff6   Benjamin Renard   Parser: get list ...
15
16
17
18
19
20
21
22
23
24
25
26
27

#include <string>
#include <vector>
#include <map>

namespace AMDA {
namespace parser {

class ParserToolbox {
public:

static std::vector<std::string> getParameters(AMDA::helpers::Properties& lProperties);

e58d7be4   Benjamin Renard   Parser: Add const...
28
static std::map<std::string, std::string> getConstants(AMDA::helpers::Properties& lProperties);
d6222ff6   Benjamin Renard   Parser: get list ...
29

0d5a1aa5   Benjamin Renard   Parser: add a fun...
30
31
static FunctionInfoMap getFunctions(AMDA::helpers::Properties& lProperties);

ea6be348   Benjamin Renard   Support arguments...
32
33
static ArgListInfoMap getArgsLists(AMDA::helpers::Properties& lProperties);

93f280a8   Benjamin Renard   Implements templa...
34
35
static TemplateParamsList getTemplateParams(AMDA::helpers::Properties& lProperties);

d6222ff6   Benjamin Renard   Parser: get list ...
36
37
38
39
40
41
};

} /* namespace parser */
} /* namespace AMDA */

#endif