cae  0.0.0
Cross-API graphics engine
Loading...
Searching...
No Matches
AWindow.hpp
Go to the documentation of this file.
1///
2/// @file AWindow.hpp
3/// @brief This file contains the Window abstract class
4/// @namespace cae
5///
6
7#pragma once
8
10
11namespace cae
12{
13
14 ///
15 /// @interface IWindow
16 /// @brief Abstract class for window
17 /// @namespace cae
18 ///
19 class AWindow : public IWindow
20 {
21
22 public:
23 ~AWindow() override = default;
24
25 }; // interface AWindow
26
27} // namespace cae
This file contains the Window interface.
~AWindow() override=default
Abstract class for window.
Definition IWindow.hpp:97