Add Hashable interface

This commit is contained in:
tsauerwein
2014-10-31 11:17:03 +01:00
parent bbea205a9c
commit 46ec078501

View File

@@ -0,0 +1,16 @@
goog.provide('ol.structs.IHashable');
/**
* @interface
*/
ol.structs.IHashable = function() {
};
/**
* @return {number} The hash code.
*/
ol.structs.IHashable.prototype.hashCode = function() {
};