DataSetParser.hh 672 Bytes
/*
 * DataSetParser.hh
 *
 *  Created on: Oct 6, 2014
 *      Author: m.mazel
 */

#ifndef DATASETPARSER_HH_
#define DATASETPARSER_HH_

#include <string>

#include "XMLConfigurator.hh"
#include "DataSetInfo.hh"

namespace AMDA {
namespace Info {

/**
 * @class DataSetParser
 * @brief Implementation of a XMLConfigurator to parse information of a dataset
 * @details
 */
class DataSetParser : public AMDA::XMLConfigurator::XMLConfigurator{

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

	boost::shared_ptr<DataSetInfo> parse (const std::string& requestFile);
};

} /* namespace Info */
} /* namespace AMDA */

#endif /* DATASETPARSER_HH_ */