Changeset 286 in flair-src for trunk/lib/FlairSensorActuator/src/VrpnObject.cpp
- Timestamp:
- Jan 8, 2019, 10:13:03 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSensorActuator/src/VrpnObject.cpp
r214 r286 18 18 #include "VrpnObject.h" 19 19 #include "VrpnObject_impl.h" 20 #include "VrpnClient.h"21 20 #include <string.h> 22 21 #include <Matrix.h> … … 30 29 31 30 VrpnObject::VrpnObject(string name, 32 const TabWidget *tab )33 : IODevice( GetVrpnClient(), name) {34 pimpl_ = new VrpnObject_impl(this, name, -1, tab );31 const TabWidget *tab,VrpnClient *client) 32 : IODevice(client, name) { 33 pimpl_ = new VrpnObject_impl(this, name, -1, tab,client); 35 34 AddDataToLog(pimpl_->output); 36 35 … … 39 38 40 39 VrpnObject::VrpnObject(string name, uint8_t id, 41 const TabWidget *tab )42 : IODevice( GetVrpnClient(), name) {40 const TabWidget *tab,VrpnClient *client) 41 : IODevice(client, name) { 43 42 Warn("Creation of object %s with id %i\n", name.c_str(), id); 44 pimpl_ = new VrpnObject_impl(this, name, id, tab );43 pimpl_ = new VrpnObject_impl(this, name, id, tab,client); 45 44 AddDataToLog(pimpl_->output); 46 45
Note:
See TracChangeset
for help on using the changeset viewer.