| 48 | } |
| 49 | |
| 50 | void ModuleContainer::GetAllModules(std::vector<IDrawableModule*>& out) |
| 51 | { |
| 52 | out.insert(out.begin(), mModules.begin(), mModules.end()); |
| 53 | for (int i = 0; i < mModules.size(); ++i) |
| 54 | { |
| 55 | if (mModules[i]->GetContainer()) |
| 56 | mModules[i]->GetContainer()->GetAllModules(out); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | void ModuleContainer::DrawContents() |
| 61 | { |
no test coverage detected