summaryrefslogtreecommitdiff
path: root/src/URLSeen.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/URLSeen.hpp')
-rw-r--r--src/URLSeen.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/URLSeen.hpp b/src/URLSeen.hpp
index b07cac8..742c863 100644
--- a/src/URLSeen.hpp
+++ b/src/URLSeen.hpp
@@ -2,11 +2,11 @@
#define __URLSEEN_H
#include "URL.hpp"
-#include "RewindInputStream.hpp"
class URLSeen {
public:
- virtual bool seen( const URL &url, RewindInputStream &s ) = 0;
+ virtual ~URLSeen( ) { };
+ virtual bool seen( const URL url ) = 0;
};
#endif