vox-core
Version:
Runtime de aplicaciones multiplataforma
20 lines (12 loc) • 388 B
JavaScript
var LprScope= core.org.voxsoftware.Lpr.Scope
var Scope= module.exports= function(manager){
LprScope.call(this, manager)
}
Scope.prototype = Object.create(LprScope.prototype);
Scope.prototype.constructor= Scope
Scope.prototype.getNativeTypeScope= function(){
return "RPCJson.Objects";
}
Scope.prototype.getNativeFreeManyMethod= function(){
return "FreeMany"
}