#ifndef __FETCHER_H #define __FETCHER_H #include "URL.hpp" #include "RewindInputStream.hpp" class Fetcher { public: virtual ~Fetcher( ) { }; virtual RewindInputStream *fetch( const URL url ) = 0; }; #endif