summaryrefslogtreecommitdiff
path: root/src/LibFetchFetcher.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LibFetchFetcher.hpp')
-rw-r--r--src/LibFetchFetcher.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/LibFetchFetcher.hpp b/src/LibFetchFetcher.hpp
new file mode 100644
index 0000000..4f1610c
--- /dev/null
+++ b/src/LibFetchFetcher.hpp
@@ -0,0 +1,21 @@
+#ifndef __LIBFETCH_FETCHER_H
+#define __LIBFETCH_FETCHER_H
+
+#include "Fetcher.hpp"
+
+class LibFetchFetcher : public Fetcher
+{
+ public:
+ LibFetchFetcher( ) {
+ }
+
+ virtual ~LibFetchFetcher( ) {
+ }
+
+ virtual RewindInputStream fetch( const URL& url ) {
+ (void)url;
+ return RewindInputStream( );
+ }
+};
+
+#endif