Sowl  1.0
Simple Object Window Library
ControlWindow.h
1 #pragma once
2 #include "../Window.h"
3 
4 namespace sowl
5 {
7  class ControlWindow : public Window
8  {
9  public:
10  ControlWindow();
11  explicit ControlWindow(HWND hwnd);
12 
13  // move constructor and move assigment
14  ControlWindow(ControlWindow&& other) noexcept;
15  ControlWindow& operator=(ControlWindow&& other) noexcept;
16 
17  int GetId() const;
18  };
19 }
Encapsulates a window handle.
Definition: Window.h:8
Encapsulates a control window handle.
Definition: ControlWindow.h:7