Blame view

src/Info/DataSetParser.hh 672 Bytes
fbe3c2bb   Benjamin Renard   First commit
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
35
36
/*
 * 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_ */