Blame view

src/expressionParser/ParserToolbox.hh 511 Bytes
d6222ff6   Benjamin Renard   Parser: get list ...
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
/*
 * ParserToolbox.hh
 *
 * Created on: Mar 18, 2019
 * Author: AKKA
 */

#ifndef PARSERTOOLBOX_HH
#define PARSERTOOLBOX_HH

#include "Properties.hh"

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

namespace AMDA {
namespace parser {

class ParserToolbox {
public:

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

static std::map<std::string, float> getConstants(AMDA::helpers::Properties& lProperties);

};

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

#endif