GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
IComponentVisibility.h
Go to the documentation of this file.
1#pragma once
2
3#include "Core.h"
4
5namespace gui_framework
6{
7 namespace interfaces
8 {
10 {
11 protected:
13
14 public:
15 IComponentVisibility(HWND componentVisibilityHandle);
16
17 void show() const;
18
19 void hide() const;
20
21 virtual ~IComponentVisibility() = default;
22 };
23 }
24}
#define GUI_FRAMEWORK_API