| 115 | } |
| 116 | |
| 117 | void ModuleContainer::Poll() |
| 118 | { |
| 119 | if (mOwner != nullptr) |
| 120 | return; |
| 121 | |
| 122 | for (int i = 0; i < mModules.size(); ++i) |
| 123 | { |
| 124 | if (mModules[i]->GetContainer()) |
| 125 | mModules[i]->GetContainer()->Poll(); |
| 126 | mModules[i]->BasePoll(); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void ModuleContainer::Clear() |
| 131 | { |
nothing calls this directly
no test coverage detected