Add Hashable interface
This commit is contained in:
@@ -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() {
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user