summaryrefslogtreecommitdiff
path: root/src/modules/fetcher/libfetch/LibFetchFetcher.hpp
blob: 1103612548b35716cec12e8a83bb1dbe03a816a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __LIBFETCH_FETCHER_H
#define __LIBFETCH_FETCHER_H

#include "Fetcher.hpp"
#include "ModuleRegistry.hpp"

class LibFetchFetcher : public Fetcher
{
	public:
		LibFetchFetcher( ) {
		}
		
		virtual ~LibFetchFetcher( ) {
		}
		
		virtual RewindInputStream *fetch( const URL url );
};

DECLARE_MODULE( Fetcher )

#endif