| 332 | |
| 333 | // Creates and registers a component on this `AppWindow`. |
| 334 | template <class ComponentType, class... Args> void AppWindow::NewComponent(Args&&... args) |
| 335 | { |
| 336 | m_components.emplace_back(new ComponentType(std::forward<Args>(args)...)); |
| 337 | } |
| 338 | |
| 339 | template <class ComponentType> ComponentType* AppWindow::GetComponent() |
| 340 | { |
nothing calls this directly
no outgoing calls
no test coverage detected