- Timestamp:
- 10/24/07 19:30:30 (11 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/Contrib/Manipulators/OSGScaleManipulatorBase.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 "OSGScaleManipulator.h" 67 68 68 #include "boost/bind.hpp"69 69 70 70 OSG_BEGIN_NAMESPACE … … 84 84 "NULL", 85 85 0, 86 (Proto typeCreateF) &ScaleManipulatorBase::createEmpty,86 (ProtoContainerCreateF) &ScaleManipulatorBase::createEmpty, 87 87 ScaleManipulator::initMethod, 88 88 NULL, … … 109 109 /*------------------------------ get -----------------------------------*/ 110 110 111 FieldContainerType &ScaleManipulatorBase::getType(void) 111 FieldContainerType & 112 ScaleManipulatorBase::getType(void) 112 113 { 113 114 return _type; 114 115 } 115 116 116 const FieldContainerType &ScaleManipulatorBase::getType(void) const 117 FieldContainerType const & 118 ScaleManipulatorBase::getType(void) const 117 119 { 118 120 return _type; 119 121 } 120 122 121 UInt32 ScaleManipulatorBase::getContainerSize(void) const 123 UInt32 124 ScaleManipulatorBase::getContainerSize(void) const 122 125 { 123 126 return sizeof(ScaleManipulator);
