GzipNode.hh 601 Bytes
/*
 * GzipNode.hh
 *
 *  Created on: 30 sept. 2013
 *      Author: CS
 */

#ifndef GZIPNODE_HH_
#define GZIPNODE_HH_

#include "NodeCfg.hh"
#include <log4cxx/logger.h>
#include "GzipPostProcessing.hh"

namespace postprocessing {

class GzipNode: public AMDA::XMLConfigurator::NodeCfg {
public:
	GzipNode() :
			NodeCfg() {
	}
	virtual ~GzipNode() {
	}

	/**
	 * Creates post-processing for current node.
	 */
	void proceed(xmlNodePtr pNode,
			const AMDA::Parameters::CfgContext& pContext);
private:
	static log4cxx::LoggerPtr _logger;

};


} /* namespace postprocessing */
#endif /* GZIPNODE_HH_ */