00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
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
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
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 }