blob: ce491306dbd5b3d54b3f19841fc62e906afd17db (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef HASHABLE_H
#define HASHABLE_H
class Hashable
{
public:
virtual unsigned long int getHashCode() = 0;
virtual bool compareForHash( Hashable &other ) = 0;
};
#endif
|