Blame view

src/ParamOutputImpl/Plot/ParamPlot/ParamParamPlotNode.hh 657 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
/*
 * ParamParamPlotNode.hh
 *
 *  Created on: Nov 14, 2014
 *      Author: m.mazel
 */

#ifndef PARAMPARAMPLOTNODE_HH_
#define PARAMPARAMPLOTNODE_HH_

#include "NodeCfg.hh"
#include "PanelPlotNodeRegistry.hh"

namespace plot {

class ParamParamPlotNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
	ParamParamPlotNode() : NodeGrpCfg() {
		for( auto child : PanelPlotNodeRegistry::getInstance().getAllElements() ){
			getChildList()[child.first] = child.second;
		}
	}
	virtual ~ParamParamPlotNode() {
	}

	void proceed(xmlNodePtr pNode, const AMDA::Parameters::CfgContext& pContext);
};

} /* namespace plot */

#endif /* PARAMPARAMPLOTNODE_HH_ */