#ifndef __DEDUPER_H #define __DEDUPER_H #include "URL.hpp" #include "RewindInputStream.hpp" class Deduper { public: virtual ~Deduper( ) { }; virtual bool contentSeen( const URL url, RewindInputStream *s ) = 0; }; #endif