- Timestamp:
- 02/27/08 09:30:29 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/FileIO/OSG/OSGOSGLoader.cpp
r1039 r1063 366 366 const Char8 *szNodename) 367 367 { 368 FieldContainer RefPtr pNewNode;368 FieldContainerInternalRefPtr pNewNode; 369 369 370 370 if(szNodeTypename == NULL) … … 414 414 if(_fcStack.size() == 1) 415 415 { 416 Node RefPtr pNode;416 NodeInternalRefPtr pNode; 417 417 418 418 if(_pCurrentFC->getType().isNode()) … … 434 434 if(_pRootNode == NullFC) 435 435 { 436 Group RefPtr pGroup = Group::create();436 GroupInternalRefPtr pGroup = Group::create(); 437 437 438 438 _pRootNode = Node::create(); … … 461 461 if(_pCurrentFC->getType().isNode() == true) 462 462 { 463 Node RefPtr pNode = boost::dynamic_pointer_cast<Node>(_pCurrentFC);463 NodeInternalRefPtr pNode = boost::dynamic_pointer_cast<Node>(_pCurrentFC); 464 464 465 465 if(pNode->getCore() == NullFC) 466 466 { 467 Group RefPtr pGroup = Group::create();467 GroupInternalRefPtr pGroup = Group::create(); 468 468 469 469 pNode->setCore(pGroup);
