HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
grid_layout_delegate.hpp
1// Copyright Take Vos 2020.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5#pragma once
6
7#include "../required.hpp"
8#include <type_traits>
9#include <memory>
10
11namespace tt {
12class grid_layout_widget;
13
15public:
16 virtual void init(grid_layout_widget &self) noexcept {}
17 virtual void deinit(grid_layout_widget &self) noexcept {}
18};
19
20}
Definition grid_layout_delegate.hpp:14
Definition grid_layout_widget.hpp:16