PlotNode.hh
865 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
44
45
/*
* PlotNode.hh
*
* Created on: 29 oct. 2013
* Author: CS
*/
#ifndef PLOTNODE_HH_
#define PLOTNODE_HH_
#include "NodeCfg.hh"
namespace plot {
class PlotNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
PlotNode();
virtual ~PlotNode();
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
};
/**
* @class OutputStructureNode
* @brief read the "outputStructure" node.
*/
class OutputStructureNode: public AMDA::XMLConfigurator::NodeCfg {
public:
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
};
/**
* @class FilePrefixNode
* @brief read the "filePrefix" node.
*/
class FilePrefixNode: public AMDA::XMLConfigurator::NodeCfg {
public:
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
};
} /* namespace plot */
#endif /* PLOTNODE_HH_ */