| 395 | } |
| 396 | |
| 397 | MenuSection* MainMenu::GetCurrentSection() const |
| 398 | { |
| 399 | std::size_t count = _sections.size(); |
| 400 | return (count >= 1 ? _sections[count - 1].get() : nullptr); |
| 401 | } |
| 402 | |
| 403 | MenuSection* MainMenu::GetUnderlyingSection() const |
| 404 | { |
no test coverage detected