BuGUI
BUtton Grid User Interface
Loading...
Searching...
No Matches
common.hpp
1#pragma once
2
3namespace bugui
4{
5template <typename Device, typename Controller>
6struct hardware;
7
11template <typename Controller>
12struct common
13{
14protected:
15 common() = default;
16 explicit common(Controller* pntr) : controller{pntr}
17 { }
18
19 Controller* controller;
20};
21
22} // namespace bugui
Inherits from all type of hardware components like grid, buttons... Provides the hardware type with t...
Definition hardware.hpp:19