Changeset 53
- Timestamp:
- 09/05/06 17:09:42 (2 years ago)
- Files:
-
- branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawable.fcd (modified) (1 diff)
- branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawable.h (modified) (1 diff)
- branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableBase.cpp (modified) (1 diff)
- branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableBase.h (modified) (3 diffs)
- branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableBase.inl (modified) (1 diff)
- branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableFields.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawable.fcd
r2 r53 4 4 name="Drawable" 5 5 parent="NodeCore" 6 library=" System"6 library="Drawable" 7 7 pointerfieldtypes="both" 8 8 structure="abstract" branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawable.h
r2 r53 51 51 */ 52 52 53 class OSG_ SYSTEM_DLLMAPPING Drawable : public DrawableBase53 class OSG_DRAWABLE_DLLMAPPING Drawable : public DrawableBase 54 54 { 55 55 private: branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableBase.cpp
r2 r53 228 228 namespace 229 229 { 230 static Char8 cvsid_cpp [] = "@(#)$Id: OSGDrawableBase.cpp,v 1.3.4.8 2006/08/01 08:48:56 vossg Exp$";230 static Char8 cvsid_cpp [] = "@(#)$Id: $"; 231 231 static Char8 cvsid_hpp [] = OSGDRAWABLEBASE_HEADER_CVSID; 232 232 static Char8 cvsid_inl [] = OSGDRAWABLEBASE_INLINE_CVSID; branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableBase.h
r2 r53 60 60 61 61 #include "OSGConfig.h" 62 #include "OSG SystemDef.h"62 #include "OSGDrawableDef.h" 63 63 64 64 #include "OSGBaseTypes.h" … … 75 75 //! \brief Drawable Base Class. 76 76 77 class OSG_ SYSTEM_DLLMAPPING DrawableBase : public NodeCore77 class OSG_DRAWABLE_DLLMAPPING DrawableBase : public NodeCore 78 78 { 79 79 public: … … 256 256 OSG_END_NAMESPACE 257 257 258 #define OSGDRAWABLEBASE_HEADER_CVSID "@(#)$Id: OSGDrawableBase.h,v 1.3.4.10 2006/08/01 08:48:56 vossg Exp$"258 #define OSGDRAWABLEBASE_HEADER_CVSID "@(#)$Id: $" 259 259 260 260 #endif /* _OSGDRAWABLEBASE_H_ */ branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableBase.inl
r2 r53 126 126 OSG_END_NAMESPACE 127 127 128 #define OSGDRAWABLEBASE_INLINE_CVSID "@(#)$Id: OSGDrawableBase.inl,v 1.3.4.7 2006/08/01 08:48:56 vossg Exp$"128 #define OSGDRAWABLEBASE_INLINE_CVSID "@(#)$Id: $" 129 129 branches/scons_build_creation/Source/System/NodeCores/Drawables/Base/OSGDrawableFields.h
r2 r53 56 56 57 57 #include "OSGConfig.h" 58 #include "OSG SystemDef.h"58 #include "OSGDrawableDef.h" 59 59 60 60 #include "OSGNodeCoreFields.h" … … 93 93 94 94 #if !defined(OSG_DO_DOC) || (OSG_DOC_LEVEL >= 3) 95 /*! \ingroup Grp SystemFieldTraits95 /*! \ingroup GrpDrawableFieldTraits 96 96 */ 97 97 #if !defined(OSG_DOC_DEV_TRAITS) … … 113 113 enum { StringConvertable = 0x00 }; 114 114 115 static OSG_ SYSTEM_DLLMAPPING115 static OSG_DRAWABLE_DLLMAPPING 116 116 DataType &getType (void); 117 117 … … 130 130 131 131 #if !defined(OSG_DO_DOC) || defined(OSG_DOC_FIELD_TYPEDEFS) 132 /*! \ingroup Grp SystemFieldSingle */132 /*! \ingroup GrpDrawableFieldSingle */ 133 133 134 134 typedef SFieldAdaptor<DrawablePtr, SFFieldContainerPtr> SFDrawablePtr; … … 136 136 137 137 #ifndef OSG_COMPILEDRAWABLEINST 138 OSG_FIELD_DLLEXPORT_DECL1(SField, DrawablePtr, OSG_ SYSTEM_DLLTMPLMAPPING)138 OSG_FIELD_DLLEXPORT_DECL1(SField, DrawablePtr, OSG_DRAWABLE_DLLTMPLMAPPING) 139 139 #endif 140 140 141 141 #if !defined(OSG_DO_DOC) || defined(OSG_DOC_FIELD_TYPEDEFS) 142 /*! \ingroup Grp SystemFieldMulti */142 /*! \ingroup GrpDrawableFieldMulti */ 143 143 144 144 typedef MFieldAdaptor<DrawablePtr, MFFieldContainerPtr> MFDrawablePtr; … … 146 146 147 147 #ifndef OSG_COMPILEDRAWABLEINST 148 OSG_FIELD_DLLEXPORT_DECL1(MField, DrawablePtr, OSG_ SYSTEM_DLLTMPLMAPPING)148 OSG_FIELD_DLLEXPORT_DECL1(MField, DrawablePtr, OSG_DRAWABLE_DLLTMPLMAPPING) 149 149 #endif 150 150 151 151 OSG_END_NAMESPACE 152 152 153 #define OSGDRAWABLEFIELDS_HEADER_CVSID "@(#)$Id: OSGDrawableFields.h,v 1.4.4.9 2006/08/01 08:48:56 vossg Exp$"153 #define OSGDRAWABLEFIELDS_HEADER_CVSID "@(#)$Id: $" 154 154 155 155 #endif /* _OSGDRAWABLEFIELDS_H_ */
