UNPKG

roslib

Version:

The standard ROS Javascript Library

18 lines (15 loc) 385 B
/** * @fileoverview * @author Brandon Alexander - balexander@willowgarage.com */ var assign = require('object-assign'); /** * A ServiceResponse is returned from the service call. * * @constructor * @param values - object matching the fields defined in the .srv definition file */ function ServiceResponse(values) { assign(this, values); } module.exports = ServiceResponse;