Blame view

src/ParamOutputImpl/Plot/PlotNode.hh 865 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
/*
 * 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);
};

8d19d171   Benjamin Renard   Fix bug with rela...
33
34
35
36
37
38
39
40
41
42
43
/**
 * @class FilePrefixNode
 * @brief read the "filePrefix" node.
 */
class FilePrefixNode: public AMDA::XMLConfigurator::NodeCfg {
public:
	void proceed(xmlNodePtr pNode,
			const AMDA::Parameters::CfgContext& pContext);
};


fbe3c2bb   Benjamin Renard   First commit
44
45
} /* namespace plot */
#endif /* PLOTNODE_HH_ */