PanelNode.hh
643 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
/*
* PanelNode.hh
*
* Created on: 29 oct. 2013
* Author: CS
*/
#ifndef PANELNODE_HH_
#define PANELNODE_HH_
#include "NodeCfg.hh"
#include "PlotLogger.hh"
namespace plot {
class PanelNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
PanelNode();
virtual ~PanelNode();
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
};
class BoundsNode: public AMDA::XMLConfigurator::NodeCfg {
public:
BoundsNode() :
NodeCfg() {
}
virtual ~BoundsNode() {
}
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
};
} /* namespace plot */
#endif /* PANELNODE_HH_ */