aboutsummaryrefslogtreecommitdiff
path: root/src/old/hashable.h
blob: 98643d5b8510e7583de446d659748cba7924642a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef HASHABLE_H
#define HASHABLE_H

class Hashable
{
public:
	virtual ~Hashable() {};
	virtual unsigned long int getHashCode() = 0;
	virtual bool compareForHash( Hashable &other ) = 0;
};

#endif