ParamPlotParser.hh
632 Bytes
/*
* ParamParser.hh
*
* Created on: Oct 6, 2014
* Author: m.mazel
*/
#ifndef PARAMPLOTPARSER_HH_
#define PARAMPLOTPARSER_HH_
#include <string>
#include "XMLConfigurator.hh"
namespace plot {
/**
* @class ParamParser
* @brief Implementation of a XMLConfigurator to parse information of a parameter
* @details
*/
class ParamPlotParser : public AMDA::XMLConfigurator::XMLConfigurator{
public:
ParamPlotParser (const char* pXSDFile);
virtual ~ParamPlotParser() {}
void parse (const std::string& requestFile, const AMDA::Parameters::CfgContext& pContext);
};
} /* namespace plot */
#endif /* PARAMPARSER_HH_ */