| 17 | } |
| 18 | |
| 19 | void InterpolationHolder::Advance(double elapsedSeconds) |
| 20 | { |
| 21 | auto iter = m_interpolations.begin(); |
| 22 | while (iter != m_interpolations.end()) |
| 23 | { |
| 24 | (*iter)->Advance(elapsedSeconds); |
| 25 | if ((*iter)->IsFinished()) |
| 26 | iter = m_interpolations.erase(iter); |
| 27 | else |
| 28 | ++iter; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | InterpolationHolder::~InterpolationHolder() |
| 33 | { |
nothing calls this directly
no test coverage detected