/** * ResamplingNode.hh * * Created on: Aug 19, 2014 * Author: AKKA */ #ifndef RESAMPLINGNODE_HH_ #define RESAMPLINGNODE_HH_ #include #include #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_ */