Blame view

src/ParamOutputImpl/Statistic/StatisticNode.hh 710 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
32
33
34
35
36
37
38
39
/*
 * StatisticNode.hh
 *
 *  Created on: 04 nov 2014
 *      Author: AKKA
 */

#ifndef STATISTICNODE_HH_
#define STATISTICNODE_HH_


#include "NodeCfg.hh"
#include "ParameterManager.hh"
#include "StatisticLogger.hh"

using namespace AMDA::Parameters;

namespace AMDA {
	namespace ParamOutputImpl {
		namespace Statistic {

			/**
			 * @class StatisticNode
			 * @brief read the "statistic" node
			 */
			class StatisticNode: public AMDA::XMLConfigurator::NodeGrpCfg {

			public:

				StatisticNode(void);
				void proceed(xmlNodePtr pNode, const AMDA::Parameters::CfgContext& pContext);

			};

		} // namespace Statistic
	} // namespace ParamOutputImpl
} // namespace AMDA

#endif /* STATISTICNODE_HH_ */