PlotLegendNode.hh 821 Bytes
/**
 * PlotLegendNode.hh
 *
 *  Created on: Sep 22, 2014
 *      Author: AKKA
 */

#ifndef PLOTLEGENDNODENODE_HH_
#define PLOTLEGENDNODENODE_HH_

#include "NodeCfg.hh"


namespace plot {

class ParamsLegendNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
	ParamsLegendNode();
	virtual ~ParamsLegendNode();
	void proceed(xmlNodePtr ,const AMDA::Parameters::CfgContext& );
};

class TextLegendNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
	TextLegendNode();
	virtual ~TextLegendNode();
	void proceed(xmlNodePtr ,const AMDA::Parameters::CfgContext& );
};

class PlotLegendNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
	PlotLegendNode();
	virtual ~PlotLegendNode();
	void proceed(xmlNodePtr ,const AMDA::Parameters::CfgContext& );
};

} /* namespace plot */

#endif /* PLOTLEGENDNODENODE_HH_ */