- Timestamp:
- 11/14/07 17:11:26 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/Contrib/Manipulators/OSGMoveManipulatorBase.cpp
r862 r1016 57 57 #include <cstdio> 58 58 #include <boost/assign/list_of.hpp> 59 #include <boost/bind.hpp> 59 60 60 61 #include <OSGConfig.h> … … 66 67 #include "OSGMoveManipulator.h" 67 68 68 #include "boost/bind.hpp"69 69 70 70 OSG_BEGIN_NAMESPACE … … 84 84 "NULL", 85 85 0, 86 (Proto typeCreateF) &MoveManipulatorBase::createEmpty,86 (ProtoContainerCreateF) &MoveManipulatorBase::createEmpty, 87 87 MoveManipulator::initMethod, 88 88 NULL, … … 109 109 /*------------------------------ get -----------------------------------*/ 110 110 111 FieldContainerType &MoveManipulatorBase::getType(void) 111 FieldContainerType & 112 MoveManipulatorBase::getType(void) 112 113 { 113 114 return _type; 114 115 } 115 116 116 const FieldContainerType &MoveManipulatorBase::getType(void) const 117 FieldContainerType const & 118 MoveManipulatorBase::getType(void) const 117 119 { 118 120 return _type; 119 121 } 120 122 121 UInt32 MoveManipulatorBase::getContainerSize(void) const 123 UInt32 124 MoveManipulatorBase::getContainerSize(void) const 122 125 { 123 126 return sizeof(MoveManipulator); 124 127 } 125 128 126 /*------------------------- decorator get ------------------------------*/ 127 128 129 130 129 131 130 132 131 … … 248 247 249 248 #if !defined(OSG_DO_DOC) || defined(OSG_DOC_DEV) 250 DataType FieldTraits<MoveManipulatorPtr>::_type("MoveManipulatorPtr", "ManipulatorPtr"); 249 DataType FieldTraits<MoveManipulatorInternalRefPtr>::_type( 250 "MoveManipulatorInternalRefPtr", 251 "ManipulatorInternalRefPtr"); 252 DataType FieldTraits<MoveManipulatorWeakRefPtr>::_type( 253 "MoveManipulatorWeakRefPtr", 254 "ManipulatorWeakRefPtr"); 255 DataType FieldTraits<MoveManipulatorParentPtr>::_type( 256 "MoveManipulatorParentPtr", 257 "ManipulatorParentPtr"); 251 258 #endif 252 259
