Blame view

src/expressionParser/FunctionsParser.hh 646 Bytes
0d5a1aa5   Benjamin Renard   Parser: add a fun...
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
/*
 * FunctionsParser.hh
 *
 *  Created on: Mar 19, 2019
 *      Author: AKKA
 */

#ifndef FUNCTIONSPARSER_HH_
#define FUNCTIONSPARSER_HH_

#include "XMLConfigurator.hh"
#include "FunctionInfo.hh"

namespace AMDA {
namespace parser {

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

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

	FunctionInfoMap parse(const std::string& requestFile);
};

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

#endif /* FUNCTIONSPARSER_HH_ */