/* * InstrumentParser.hh * * Created on: Oct 6, 2014 * Author: m.mazel */ #ifndef INSTRUMENTPARSER_HH_ #define INSTUMENTPARSER_HH_ #include #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 parse (const std::string& requestFile); }; } /* namespace Info */ } /* namespace AMDA */ #endif /* INSTRUMENTPARSER_HH_ */