Changeset 118 for osgVisual/include/extLink
- Timestamp:
- Aug 23, 2010, 11:43:12 PM (14 years ago)
- Location:
- osgVisual/include/extLink
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
osgVisual/include/extLink/dataIO_extLink.h
r88 r118 41 41 * 42 42 */ 43 dataIO_extLink(std::vector<osgVisual::dataIO_slot >& dataSlots_) : dataSlots(dataSlots_){}43 dataIO_extLink(std::vector<osgVisual::dataIO_slot *>& dataSlots_) : dataSlots(dataSlots_){} 44 44 45 45 /** … … 87 87 * This central dataSlot array is filled with available slots by this extLink class. 88 88 */ 89 std::vector<dataIO_slot >& dataSlots;89 std::vector<dataIO_slot *>& dataSlots; 90 90 91 91 }; -
osgVisual/include/extLink/dataIO_extLinkVCL.h
r116 r118 76 76 #include <leakDetection.h> 77 77 public: 78 dataIO_extLinkVCL(std::vector<dataIO_slot >& dataSlots_);78 dataIO_extLinkVCL(std::vector<dataIO_slot *>& dataSlots_); 79 79 virtual ~dataIO_extLinkVCL(void); 80 80 … … 116 116 CVCLVariable<double> SAENGER_ROT_Y; 117 117 CVCLVariable<double> SAENGER_ROT_Z; 118 119 118 }; 120 119
Note: See TracChangeset
for help on using the changeset viewer.