summaryrefslogtreecommitdiff
path: root/src/URLSeen.hpp
blob: 742c863ee0fe9125033058f1b41e661d01beb10e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __URLSEEN_H
#define __URLSEEN_H

#include "URL.hpp"

class URLSeen {
	public:
		virtual ~URLSeen( ) { };
		virtual bool seen( const URL url ) = 0;
};

#endif