#if !defined(HASHABLE_H)
#define HASHABLE_H

#include "Serializable.h"

class Hashable : virtual public Serializable {
	public:
		Hashable() {};

		virtual ~Hashable() {};

		virtual int hashCode() const = 0;

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

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