Add Hashable interface
This commit is contained in:
16
src/ol/structs/hashable.js
Normal file
16
src/ol/structs/hashable.js
Normal 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() {
|
||||
};
|
||||
Reference in New Issue
Block a user