| 12345678910111213141516171819202122232425262728293031 |
- var js2cppX = {
- alloc:function(){
- var context = {
- _items:{},
- _id:0,
- create:function (data, id) {
- if (typeof(id) === "undefined")
- {
- this._id += 1;
- id = this._id;
- }
- this._items[id] = data;
- return id;
- },
- get:function(id){
- return this._items[id];
- },
- free:function(id){
- delete this._items[id];
- },
- get_size:function(){
- return Object.keys(this._items).length;
- }
- }
- return context;
- }
- };
- var js2cpp = js2cppX.alloc();
|