Blame view

src/SpiceKernel/SpiceKernelConfigParser.hh 759 Bytes
cebd3f0e   Benjamin Renard   First implementat...
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
/*
 * SpiceKernelConfigParser.hh
 *
 *  Created on: Jul 8, 2016
 *      Author: AKKA IS
 */

#ifndef SPICEKERNELCONFIGPARSER_HH_
#define SPICEKERNELCONFIGPARSER_HH_

#include "XMLConfigurator.hh"
#include "SpiceKernelConfig.hh"

namespace AMDA {
namespace SpiceKernel {

/**
 * @class SpiceKernelConfigParser
 * @brief Implementation of a XMLConfigurator to parse Spice Kernel config file
 * @details
 */
class SpiceKernelConfigParser : public AMDA::XMLConfigurator::XMLConfigurator{

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

	boost::shared_ptr<SpiceKernelConfig> parse (const std::string& configFile);

};

} /* namespace SpiceKernel */
} /* namespace AMDA */

#endif /* SPICEKERNELCONFIGPARSER_HH_ */