#ifndef __PROCESSOR_H #define __PROCESSOR_H #include "RewindInputStream.hpp" class Processor { public: virtual ~Processor( ) { } virtual void process( RewindInputStream *s ) = 0; }; #endif