TarNode.hh
592 Bytes
/*
* TarNode.hh
*
* Created on: 30 sept. 2013
* Author: CS
*/
#ifndef TARNODE_HH_
#define TARNODE_HH_
#include "NodeCfg.hh"
#include <log4cxx/logger.h>
#include "TarPostProcessing.hh"
namespace postprocessing {
class TarNode: public AMDA::XMLConfigurator::NodeCfg {
public:
TarNode() :
NodeCfg() {
}
virtual ~TarNode() {
}
/**
* Creates post-processing for current node.
*/
void proceed(xmlNodePtr pNode,
const AMDA::Parameters::CfgContext& pContext);
private:
static log4cxx::LoggerPtr _logger;
};
} /* namespace postprocessing */
#endif /* TARNODE_HH_ */