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