ResamplingNode.hh
641 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
/**
* ResamplingNode.hh
*
* Created on: Aug 19, 2014
* Author: AKKA
*/
#ifndef RESAMPLINGNODE_HH_
#define RESAMPLINGNODE_HH_
#include <libxml/tree.h>
#include <iosfwd>
#include "NodeCfg.hh"
#include "PlotLogger.hh"
#include "SeriesProperties.hh"
#include "CommonNode.hh"
namespace plot {
/**
* Read a 'resampling' tag from xml request
*/
class ResamplingNode: public AMDA::XMLConfigurator::NodeCfg {
public:
ResamplingNode() : AMDA::XMLConfigurator::NodeCfg(){};
virtual ~ResamplingNode(){};
void proceed(xmlNodePtr ,const AMDA::Parameters::CfgContext& );
};
} /* namespace plot */
#endif /* RESAMPLINGNODE_HH_ */