Changeset 988 for branches/Carsten_PtrWork/Source/System/FieldContainer/Attachments/OSGStringAttributeMapBase.cpp
- Timestamp:
- 10/24/07 19:30:30 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/FieldContainer/Attachments/OSGStringAttributeMapBase.cpp
r977 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 "OSGStringAttributeMap.h" 67 68 68 #include "boost/bind.hpp"69 69 70 70 OSG_BEGIN_NAMESPACE … … 129 129 "StringAttributeMap", 130 130 0, 131 (Proto typeCreateF) &StringAttributeMapBase::createEmpty,131 (ProtoContainerCreateF) &StringAttributeMapBase::createEmpty, 132 132 StringAttributeMap::initMethod, 133 133 (InitalInsertDescFunc) &StringAttributeMapBase::classDescInserter, … … 176 176 /*------------------------------ get -----------------------------------*/ 177 177 178 FieldContainerType &StringAttributeMapBase::getType(void) 178 FieldContainerType & 179 StringAttributeMapBase::getType(void) 179 180 { 180 181 return _type; 181 182 } 182 183 183 const FieldContainerType &StringAttributeMapBase::getType(void) const 184 FieldContainerType const & 185 StringAttributeMapBase::getType(void) const 184 186 { 185 187 return _type; 186 188 } 187 189 188 UInt32 StringAttributeMapBase::getContainerSize(void) const 190 UInt32 191 StringAttributeMapBase::getContainerSize(void) const 189 192 { 190 193 return sizeof(StringAttributeMap);
