summaryrefslogtreecommitdiff
path: root/src/Deduper.hpp
blob: 3cb33c1a3097d8c6dccc8e2f3c79dabedf8ee5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __DEDUPER_H
#define __DEDUPER_H

#include "URL.hpp"
#include "RewindInputStream.hpp"

class Deduper
{
	public:
		virtual ~Deduper( ) { };
		
		virtual bool contentSeen( const URL url, RewindInputStream *s ) = 0;
};

#endif