#pragma once #include namespace QuickMedia { class Body; class Page; class SearchBar; struct Tab { std::unique_ptr body; std::unique_ptr page; // Only null when current page has |is_single_page()| set to true std::unique_ptr search_bar; // Nullable }; }