| 235 | } |
| 236 | |
| 237 | int size() const override { |
| 238 | int totalSize = 0; |
| 239 | for (auto it = teams.begin(); it != teams.end(); it++) { |
| 240 | totalSize += (*it)->size(); |
| 241 | } |
| 242 | return totalSize; |
| 243 | } |
| 244 | |
| 245 | std::vector<UID> const& getServerIDs() const override { |
| 246 | static std::vector<UID> tempServerIDs; |
no test coverage detected