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

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

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

DECLARE_MODULE( Fetcher )

#endif