00001 /*---------------------------------------------------------------------------*\ 00002 * OpenSG * 00003 * * 00004 * * 00005 * Copyright (C) 2000-2002 by the OpenSG Forum * 00006 * * 00007 * www.opensg.org * 00008 * * 00009 * contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de * 00010 * * 00011 \*---------------------------------------------------------------------------*/ 00012 /*---------------------------------------------------------------------------*\ 00013 * License * 00014 * * 00015 * This library is free software; you can redistribute it and/or modify it * 00016 * under the terms of the GNU Library General Public License as published * 00017 * by the Free Software Foundation, version 2. * 00018 * * 00019 * This library is distributed in the hope that it will be useful, but * 00020 * WITHOUT ANY WARRANTY; without even the implied warranty of * 00021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00022 * Library General Public License for more details. * 00023 * * 00024 * You should have received a copy of the GNU Library General Public * 00025 * License along with this library; if not, write to the Free Software * 00026 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 00027 * * 00028 \*---------------------------------------------------------------------------*/ 00029 /*---------------------------------------------------------------------------*\ 00030 * Changes * 00031 * * 00032 * * 00033 * * 00034 * * 00035 * * 00036 * * 00037 \*---------------------------------------------------------------------------*/ 00038 00039 #include <stdlib.h> 00040 #include <stdio.h> 00041 00042 #include "OSGConfig.h" 00043 00044 #include "OSGAttachmentPtr.h" 00045 #include "OSGThread.h" 00046 00047 OSG_USING_NAMESPACE 00048 00049 #ifdef OSG_DOC_FILES_IN_MODULE 00050 00053 #endif 00054 00055 AttachmentPtr::AttachmentPtr(const Attachment &source) : 00056 00057 Inherited(source) 00058 { 00059 } 00060 00061 AttachmentPtr::AttachmentPtr(const Attachment *source) : 00062 00063 Inherited(source) 00064 { 00065 } 00066 00067 AttachmentPtr::AttachmentPtr(const Attachment *source, 00068 const UInt16 uiSize, 00069 const UInt16 uiParentPos) : 00070 00071 Inherited(source, uiSize, uiParentPos) 00072 { 00073 } 00074 00075 /*-------------------------------------------------------------------------*/ 00076 /* Functions */ 00077 00078 OSG_SYSTEMLIB_DLLMAPPING 00079 std::ostream &OSG::operator <<( std::ostream &os, 00080 const AttachmentPtr &fc) 00081 { 00082 if(fc == NullFC) 00083 { 00084 os << std::hex << "NodePtr 0x" << &fc << std::dec << ":NullFC"; 00085 } 00086 else 00087 { 00088 os << std::hex 00089 << "NodePtr 0x" 00090 << &fc 00091 << std::dec << ":" 00092 << fc->getType().getName() 00093 << "Ptr(0x" 00094 << std::hex 00095 << (&(*fc)) 00096 << std::dec 00097 << ")"; 00098 } 00099 00100 return os; 00101 } 00102 00103 00104 /*-------------------------------------------------------------------------*/ 00105 /* cvs id's */ 00106 00107 #ifdef __sgi 00108 #pragma set woff 1174 00109 #endif 00110 00111 #ifdef OSG_LINUX_ICC 00112 #pragma warning( disable : 177 ) 00113 #endif 00114 00115 namespace 00116 { 00117 static Char8 cvsid_cpp[] = "@(#)$Id: $"; 00118 static Char8 cvsid_hpp[] = OSGATTACHMENTPTR_HEADER_CVSID; 00119 static Char8 cvsid_inl[] = OSGATTACHMENTPTR_INLINE_CVSID; 00120 }
1.5.5