Changeset 122 in flair-src for trunk/lib/FlairSensorActuator/src/VrpnObject.cpp
- Timestamp:
- 01/06/17 13:56:26 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairSensorActuator/src/VrpnObject.cpp
r15 r122 30 30 namespace sensor { 31 31 32 VrpnObject::VrpnObject( const VrpnClient *parent,string name,32 VrpnObject::VrpnObject(string name, 33 33 const TabWidget *tab) 34 : IODevice( parent, name) {35 pimpl_ = new VrpnObject_impl(this, parent,name, -1, tab);34 : IODevice(GetVrpnClient(), name) { 35 pimpl_ = new VrpnObject_impl(this, name, -1, tab); 36 36 AddDataToLog(pimpl_->output); 37 37 } 38 38 39 VrpnObject::VrpnObject( const VrpnClient *parent,string name, uint8_t id,39 VrpnObject::VrpnObject(string name, uint8_t id, 40 40 const TabWidget *tab) 41 : IODevice( parent, name) {41 : IODevice(GetVrpnClient(), name) { 42 42 Warn("Creation of object %s with id %i\n", name.c_str(), id); 43 pimpl_ = new VrpnObject_impl(this, parent,name, id, tab);43 pimpl_ = new VrpnObject_impl(this, name, id, tab); 44 44 AddDataToLog(pimpl_->output); 45 45 }
Note:
See TracChangeset
for help on using the changeset viewer.