summaryrefslogtreecommitdiff
path: root/include/crawler/Fetcher.hpp
blob: 40f1c7a315bc433d8522b2e21973d3889d34f855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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