Show
Ignore:
Timestamp:
05/05/08 07:12:19 (5 months ago)
Author:
vossg
Message:

changed: interface cleanup, removed ptr typedefs, nullfc

these will be needed for the 1.x compat stuff

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/Contrib/Manipulators/OSGManipulatorManager.cpp

    r1168 r1198  
    8383        if ( ! _maniC->getParents().empty() ) 
    8484        { 
    85             NodePtr maniN = dynamic_cast<NodePtr>(_maniC->getParents()[0]); 
     85            Node *maniN = dynamic_cast<Node *>(_maniC->getParents()[0]); 
    8686 
    87             _maniC = NullFC
     87            _maniC = NULL
    8888 
    8989            switch (type) 
     
    116116} 
    117117 
    118 void ManipulatorManager::setTarget(const NodePtr &value) 
     118void ManipulatorManager::setTarget(Node * const value) 
    119119{ 
    120120    _maniC->setTarget(value); 
     
    122122} 
    123123 
    124 void ManipulatorManager::setViewport(const ViewportPtr &value) 
     124void ManipulatorManager::setViewport(Viewport * const value) 
    125125{ 
    126126    _maniC->setViewport(value); 
     
    153153} 
    154154 
    155 bool ManipulatorManager::activate(NodePtr n) 
     155bool ManipulatorManager::activate(Node *n) 
    156156{ 
    157157    if ( _maniC->hasSubHandle(n) )