Add cairo interface.
This commit is contained in:
parent
a03eb9599f
commit
9bcc0ae88e
63 changed files with 1247 additions and 450 deletions
11
src/ui_elements/desktop_elements/IPlatformWindow.h
Normal file
11
src/ui_elements/desktop_elements/IPlatformWindow.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
class IPlatformWindow
|
||||
{
|
||||
public:
|
||||
virtual ~IPlatformWindow() = default;
|
||||
};
|
||||
|
||||
using IPlatformWindowPtr = std::unique_ptr<IPlatformWindow>;
|
Loading…
Add table
Add a link
Reference in a new issue