Add initial exports

This commit is contained in:
Tom Payne
2012-09-24 16:58:18 +02:00
parent d7c6ce19a9
commit b7020750ac
7 changed files with 80 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
goog.require('ol.Object');
goog.exportSymbol('ol.Object', ol.Object);
goog.exportProperty(ol.Object.prototype,
'bindTo', ol.Object.prototype.bindTo);
goog.exportProperty(ol.Object.prototype,
'changed', ol.Object.prototype.changed);
goog.exportProperty(ol.Object.prototype,
'get', ol.Object.prototype.get);
goog.exportProperty(ol.Object.prototype,
'notify', ol.Object.prototype.notify);
goog.exportProperty(ol.Object.prototype,
'set', ol.Object.prototype.set);
goog.exportProperty(ol.Object.prototype,
'setOptions', ol.Object.prototype.setOptions);
goog.exportProperty(ol.Object.prototype,
'setValues', ol.Object.prototype.setValues);
goog.exportProperty(ol.Object.prototype,
'unbind', ol.Object.prototype.unbind);
goog.exportProperty(ol.Object.prototype,
'unbindAll', ol.Object.prototype.unbindAll);