- Timestamp:
- 10/24/07 19:30:30 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/Contrib/Manipulators/OSGMoveManipulatorBase.cpp
r976 r988 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);
