ParamParamPlotNode.hh 657 Bytes
/*
 * 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_ */