Changeset 1162
- Timestamp:
- 04/15/08 04:49:17 (4 weeks ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Groups/Misc/OSGMultiCore.cpp
r1110 r1162 124 124 void MultiCore::accumulateMatrix(Matrix &result) 125 125 { 126 CoresFieldType::const_iterator coreIt = _mfCores.begin();127 CoresFieldType::const_iterator coreEnd = _mfCores.end ();126 MFUnrecChildNodeCorePtr::const_iterator coreIt = _mfCores.begin(); 127 MFUnrecChildNodeCorePtr::const_iterator coreEnd = _mfCores.end (); 128 128 129 129 while(coreIt != coreEnd) … … 137 137 void MultiCore::adjustVolume(Volume &volume) 138 138 { 139 CoresFieldType::const_iterator coreIt = _mfCores.begin();140 CoresFieldType::const_iterator coreEnd = _mfCores.end ();139 MFUnrecChildNodeCorePtr::const_iterator coreIt = _mfCores.begin(); 140 MFUnrecChildNodeCorePtr::const_iterator coreEnd = _mfCores.end (); 141 141 142 142 while(coreIt != coreEnd) … … 158 158 RenderAction *a = dynamic_cast<RenderAction *>(action); 159 159 160 CoresFieldType::const_iterator coreIt = this->getCores().begin();161 CoresFieldType::const_iterator coreEnd = this->getCores().end ();160 MFUnrecChildNodeCorePtr::const_iterator coreIt = this->getCores().begin(); 161 MFUnrecChildNodeCorePtr::const_iterator coreEnd = this->getCores().end (); 162 162 163 163 Action::ResultE returnValue = Action::Continue; … … 183 183 RenderAction *a = dynamic_cast<RenderAction *>(action); 184 184 185 CoresFieldType::const_iterator coreIt = this->getCores().begin();186 CoresFieldType::const_iterator coreEnd = this->getCores().end ();185 MFUnrecChildNodeCorePtr::const_iterator coreIt = this->getCores().begin(); 186 MFUnrecChildNodeCorePtr::const_iterator coreEnd = this->getCores().end (); 187 187 188 188 Action::ResultE returnValue = Action::Continue; trunk/Source/System/NodeCores/Groups/Misc/OSGMultiCore.h
r1106 r1162 61 61 typedef MultiCoreBase Inherited; 62 62 typedef MultiCore Self; 63 64 typedef MFUnrecFieldContainerChildNodeCorePtr CoresFieldType;65 63 66 64 /*---------------------------------------------------------------------*/
