PlotNode.hh
637 Bytes
/*
* PlotNode.hh
*
* Created on: 29 oct. 2013
* Author: CS
*/
#ifndef PLOTNODE_HH_
#define PLOTNODE_HH_
#include "NodeCfg.hh"
namespace plot {
class PlotNode: public AMDA::XMLConfigurator::NodeGrpCfg {
public:
PlotNode();
virtual ~PlotNode();
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
};
/**
* @class OutputStructureNode
* @brief read the "outputStructure" node.
*/
class OutputStructureNode: public AMDA::XMLConfigurator::NodeCfg {
public:
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
};
} /* namespace plot */
#endif /* PLOTNODE_HH_ */