Скачиваний:
7
Добавлен:
01.05.2014
Размер:
286 б
Скачать
#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 
Соседние файлы в папке OLEApp