summaryrefslogtreecommitdiff
path: root/src/modules/fetcher/file/FileFetcher.hpp
blob: 747c9b01a4913fe7be831557b9f91139c0d9fa59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __FILE_FETCHER_H
#define __FILE_FETCHER_H

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

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

DECLARE_MODULE( Fetcher )

#endif