Blame view

src/Info/ParamTableNode.hh 569 Bytes
fbe3c2bb   Benjamin Renard   First commit
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
/**
 * 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_ */