VirtualInstrumentBaseParser.hh
819 Bytes
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
37
38
39
40
41
42
43
/**
* VirtualInstrumentBaseParser.hh
*
* Created on: 21 nov. 2014
* Author: AKKA
*/
#ifndef VIRTUALINSTRUMENTBASEPARSER_HH_
#define VIRTUALINSTRUMENTBASEPARSER_HH_
#include "VirtualInstrument.hh"
#include <XMLConfigurator.hh>
namespace AMDA
{
namespace LocalFileInterface
{
class VirtualInstrumentBaseParser : public AMDA::XMLConfigurator::XMLConfigurator
{
public:
VirtualInstrumentBaseParser(const char* pXSDFile, const char* pBaseFileName);
virtual ~VirtualInstrumentBaseParser();
/**
* Parse an XML file to configure a local VI database.
*/
virtual void parse(VirtualInstrumentSPtr lResult);
private:
/*
* @brief Path to the XML base file
*/
std::string _baseFileName;
};
}/* namespace LocalFileInterface */
} /* namespace AMDA */
#endif /* VIRTUALINSTRUMENTBASEPARSER_HH_ */