Show
Ignore:
Timestamp:
05/05/08 06:58:23 (7 months ago)
Author:
vossg
Message:

changed: base rebuild interface clean up (removal ptr typedef / NullFC)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/Cluster/Window/SortLast/OSGBinarySwapComposerBase.cpp

    r1098 r1197  
    339339    BinarySwapComposerTransitPtr fc; 
    340340 
    341     if(getClassType().getPrototype() != NullFC
     341    if(getClassType().getPrototype() != NULL
    342342    { 
    343343        FieldContainerTransitPtr tmpPtr = 
     
    355355    BinarySwapComposerTransitPtr fc; 
    356356 
    357     if(getClassType().getPrototype() != NullFC
     357    if(getClassType().getPrototype() != NULL
    358358    { 
    359359        FieldContainerTransitPtr tmpPtr = 
     
    367367 
    368368//! create an empty new instance of the class, do not copy the prototype 
    369 BinarySwapComposerPtr BinarySwapComposerBase::createEmpty(void) 
    370 { 
    371     BinarySwapComposerPtr returnValue; 
     369BinarySwapComposer *BinarySwapComposerBase::createEmpty(void) 
     370{ 
     371    BinarySwapComposer *returnValue; 
    372372 
    373373    newPtr<BinarySwapComposer>(returnValue, Thread::getCurrentLocalFlags()); 
     
    379379} 
    380380 
    381 BinarySwapComposerPtr BinarySwapComposerBase::createEmptyLocal(BitVector bFlags) 
    382 { 
    383     BinarySwapComposerPtr returnValue; 
     381BinarySwapComposer *BinarySwapComposerBase::createEmptyLocal(BitVector bFlags) 
     382{ 
     383    BinarySwapComposer *returnValue; 
    384384 
    385385    newPtr<BinarySwapComposer>(returnValue, bFlags); 
     
    392392FieldContainerTransitPtr BinarySwapComposerBase::shallowCopy(void) const 
    393393{ 
    394     BinarySwapComposerPtr tmpPtr; 
     394    BinarySwapComposer *tmpPtr; 
    395395 
    396396    newPtr(tmpPtr,  
     
    408408    BitVector bFlags) const 
    409409{ 
    410     BinarySwapComposerPtr tmpPtr; 
     410    BinarySwapComposer *tmpPtr; 
    411411 
    412412    newPtr(tmpPtr, dynamic_cast<const BinarySwapComposer *>(this), bFlags); 
     
    531531 
    532532#ifdef OSG_MT_CPTR_ASPECT 
    533 FieldContainerPtr BinarySwapComposerBase::createAspectCopy(void) const 
    534 { 
    535     BinarySwapComposerPtr returnValue; 
     533FieldContainer *BinarySwapComposerBase::createAspectCopy(void) const 
     534{ 
     535    BinarySwapComposer *returnValue; 
    536536 
    537537    newAspectCopy(returnValue, 
     
    551551 
    552552#if !defined(OSG_DO_DOC) || defined(OSG_DOC_DEV) 
    553 DataType FieldTraits<BinarySwapComposerPtr>::_type("BinarySwapComposerPtr", "ImageComposerPtr"); 
     553DataType FieldTraits<BinarySwapComposer *>::_type("BinarySwapComposerPtr", "ImageComposerPtr"); 
    554554#endif 
    555555