Blame view

src/XMLParameterConfigurator/ProcessNode.hh 544 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
/*
 * ProcessNode.hh
 *
 *  Created on: Oct 31, 2012
 *      Author: f.casimir
 */

#ifndef PROCESSNODE_HH_
#define PROCESSNODE_HH_

#include "NodeCfg.hh"

namespace AMDA {
namespace XMLParameterConfigurator {

class ProcessNode : public AMDA::XMLConfigurator::NodeCfg {
public:
	ProcessNode();
	virtual ~ProcessNode();
	/**
	 * Parse process XML File node.
	 */
    virtual void proceed(xmlNodePtr,const AMDA::Parameters::CfgContext& context);
};

} /* namespace XMLParameterConfigurator */
} /* namespace AMDA */
#endif /* PROCESSNODE_HH_ */