summaryrefslogtreecommitdiff
path: root/include/crawler/Processor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/crawler/Processor.hpp')
-rw-r--r--include/crawler/Processor.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/crawler/Processor.hpp b/include/crawler/Processor.hpp
new file mode 100644
index 0000000..bc17ec0
--- /dev/null
+++ b/include/crawler/Processor.hpp
@@ -0,0 +1,13 @@
+#ifndef __PROCESSOR_H
+#define __PROCESSOR_H
+
+#include "RewindInputStream.hpp"
+
+class Processor {
+ public:
+ virtual ~Processor( ) { }
+
+ virtual void process( RewindInputStream *s ) = 0;
+};
+
+#endif