summaryrefslogtreecommitdiff
path: root/include/crawler/Processor.hpp
blob: bc17ec08070b8343dd6800e3cd671650d5281ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __PROCESSOR_H
#define __PROCESSOR_H

#include "RewindInputStream.hpp"

class Processor {
	public:
		virtual ~Processor( ) { }
		
		virtual void process( RewindInputStream *s ) = 0;
};

#endif