/** * ParamTableNode.hh * * Created on: 10 oct. 2014 * Author: AKKA */ #ifndef PARAMTABLENODE_HH_ #define PARAMTABLENODE_HH_ #include "NodeCfg.hh" namespace AMDA { namespace Info { /** * @class ParamTableNode * @brief Parse a table node for a parameter. * @details */ class ParamTableNode : public AMDA::XMLConfigurator::NodeGrpCfg { public: ParamTableNode(); virtual ~ParamTableNode(); virtual void proceed(xmlNodePtr,const AMDA::Parameters::CfgContext& context); }; } /* namespace Info */ } /* namespace AMDA */ #endif /* PARAMTABLENODE_HH_ */