Changeset 118 for osgVisual/include


Ignore:
Timestamp:
Aug 23, 2010, 11:43:12 PM (14 years ago)
Author:
Torben Dannhauer
Message:
 
Location:
osgVisual/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • osgVisual/include/dataIO/visual_dataIO.h

    r116 r118  
    127127         * List of SLOT variables dataIO provides.
    128128         */
    129         std::vector<dataIO_slot> dataSlots;
     129        std::vector<dataIO_slot*> dataSlots;
    130130
    131131        friend class dataIO_eventCallback;
  • osgVisual/include/extLink/dataIO_extLink.h

    r88 r118  
    4141         *
    4242         */
    43         dataIO_extLink(std::vector<osgVisual::dataIO_slot>& dataSlots_) : dataSlots(dataSlots_){}
     43        dataIO_extLink(std::vector<osgVisual::dataIO_slot *>& dataSlots_) : dataSlots(dataSlots_){}
    4444
    4545        /**
     
    8787         * This central dataSlot array is filled with available slots by this extLink class.
    8888         */
    89         std::vector<dataIO_slot>& dataSlots;
     89        std::vector<dataIO_slot *>& dataSlots;
    9090 
    9191};
  • osgVisual/include/extLink/dataIO_extLinkVCL.h

    r116 r118  
    7676#include <leakDetection.h>
    7777public:
    78         dataIO_extLinkVCL(std::vector<dataIO_slot>& dataSlots_);
     78        dataIO_extLinkVCL(std::vector<dataIO_slot *>& dataSlots_);
    7979        virtual ~dataIO_extLinkVCL(void);
    8080
     
    116116    CVCLVariable<double> SAENGER_ROT_Y;
    117117    CVCLVariable<double> SAENGER_ROT_Z;
    118 
    119118};
    120119
Note: See TracChangeset for help on using the changeset viewer.