Blame view

src/Info/StatusDefNode.hh 573 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
/**
 * StatusDefNode.hh
 *
 *  Created on: 13 jen. 2015
 *      Author: AKKA
 */

#ifndef STATUSDEFNODE_HH_
#define STATUSDEFNODE_HH_

#include "NodeCfg.hh"

namespace AMDA {
namespace Info {

/**
 * @class StatusDefNode
 * @brief Parse a status definition node for a parameter.
 * @details
 */
class StatusDefNode : public AMDA::XMLConfigurator::NodeGrpCfg
{
public:
	StatusDefNode();
	virtual ~StatusDefNode();
	virtual void proceed(xmlNodePtr,const AMDA::Parameters::CfgContext& context);
};

} /* namespace Info */
} /* namespace AMDA */
#endif /* STATUSDEFNODE_HH_ */