PlotLegendNode.hh
821 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
/**
* 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_ */