File indexing completed on 2025-08-06 08:17:38
0001 #include "MbdVertexMap.h"
0002
0003 #include <map>
0004
0005 class MbdVertex;
0006
0007 namespace
0008 {
0009 std::map<unsigned int, MbdVertex *> DummyMbdVertexMap;
0010 }
0011
0012 MbdVertexMap::ConstIter MbdVertexMap::begin() const
0013 {
0014 return DummyMbdVertexMap.end();
0015 }
0016
0017 MbdVertexMap::ConstIter MbdVertexMap::find(unsigned int ) const
0018 {
0019 return DummyMbdVertexMap.end();
0020 }
0021
0022 MbdVertexMap::ConstIter MbdVertexMap::end() const
0023 {
0024 return DummyMbdVertexMap.end();
0025 }
0026
0027 MbdVertexMap::Iter MbdVertexMap::begin()
0028 {
0029 return DummyMbdVertexMap.end();
0030 }
0031
0032 MbdVertexMap::Iter MbdVertexMap::find(unsigned int )
0033 {
0034 return DummyMbdVertexMap.end();
0035 }
0036
0037 MbdVertexMap::Iter MbdVertexMap::end()
0038 {
0039 return DummyMbdVertexMap.end();
0040 }