diff --git a/src/ol/structs/hashable.js b/src/ol/structs/hashable.js new file mode 100644 index 0000000000..371beafa6c --- /dev/null +++ b/src/ol/structs/hashable.js @@ -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() { +};