UNPKG

roslib

Version:

The standard ROS Javascript Library

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