#if !defined(HASHABLE_H)
#define HASHABLE_H

class Hashable  {
	public:
		Hashable() {};

		virtual ~Hashable() {};

		virtual int hashCode() const = 0;

		//virtual int operator==(const Hashable& o);
};

#endif 
Соседние файлы в папке lab1_3