mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-09 12:37:41 +03:00
17 lines
349 B
C++
17 lines
349 B
C++
#ifndef CLRSYNC_GUI_ABOUT_WINDOW_HPP
|
|
#define CLRSYNC_GUI_ABOUT_WINDOW_HPP
|
|
|
|
class about_window
|
|
{
|
|
public:
|
|
about_window();
|
|
void render();
|
|
void show() { m_visible = true; }
|
|
void hide() { m_visible = false; }
|
|
bool is_visible() const { return m_visible; }
|
|
|
|
private:
|
|
bool m_visible{false};
|
|
};
|
|
|
|
#endif // CLRSYNC_GUI_ABOUT_WINDOW_HPP
|