Blame view

src/expressionParser/TemplateParamsParser.hh 701 Bytes
93f280a8   Benjamin Renard   Implements templa...
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
/*
 * TemplateParamsParser.hh
 *
 *  Created on: May 10, 2019
 *      Author: AKKA
 */

#ifndef TEMPLATEPARAMSPARSER_HH_
#define TEMPLATEPARAMSPARSER_HH_

#include "XMLConfigurator.hh"
#include "TemplateParamsInfo.hh"

namespace AMDA {
namespace parser {

/**
 * @class TemplateParamsParser
 * @brief Implementation of a XMLConfigurator to parse Template Params file
 * @details
 */
class TemplateParamsParser : public AMDA::XMLConfigurator::XMLConfigurator{

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

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

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

#endif /* TEMPLATEPARAMSPARSER_HH_ */