InstrumentParser.hh
705 Bytes
/*
* InstrumentParser.hh
*
* Created on: Oct 6, 2014
* Author: m.mazel
*/
#ifndef INSTRUMENTPARSER_HH_
#define INSTUMENTPARSER_HH_
#include <string>
#include "XMLConfigurator.hh"
#include "InstrumentInfo.hh"
namespace AMDA {
namespace Info {
/**
* @class InstrumentParser
* @brief Implementation of a XMLConfigurator to parse information of an instrument
* @details
*/
class InstrumentParser : public AMDA::XMLConfigurator::XMLConfigurator{
public:
InstrumentParser (const char* pXSDFile);
virtual ~InstrumentParser() {}
boost::shared_ptr<InstrumentInfo> parse (const std::string& requestFile);
};
} /* namespace Info */
} /* namespace AMDA */
#endif /* INSTRUMENTPARSER_HH_ */