Blame view

src/expressionParser/ConstantsParser.hh 672 Bytes
7e9d20f7   Benjamin Renard   Add parser to loa...
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
/*
 * ConstantsParser.hh
 *
 *  Created on: Mar 18, 2019
 *      Author: AKKA
 */

#ifndef CONSTANTSPARSER_HH_
#define CONSTANTSPARSER_HH_

#include <map>
#include <string>

#include "XMLConfigurator.hh"

namespace AMDA {
namespace parser {

/**
 * @class ConstantsParser
 * @brief Implementation of a XMLConfigurator to parse constants file
 * @details
 */
class ConstantsParser : public AMDA::XMLConfigurator::XMLConfigurator{

public:
	ConstantsParser (const char* pXSDFile);
	virtual ~ConstantsParser() {}

e58d7be4   Benjamin Renard   Parser: Add const...
30
	std::map<std::string, std::string> parse(const std::string& requestFile);
7e9d20f7   Benjamin Renard   Add parser to loa...
31
32
33
34
35
36
};

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

#endif /* CONSTANTSPARSER_HH_ */