#pragma once #include class CVersionKeeperManager { public: CVersionKeeperManager(); // whether the update screen was shown this boot. bool fired(); private: bool isVersionOlderThanRunning(const std::string& ver); bool m_bFired = false; }; inline std::unique_ptr g_pVersionKeeperMgr;