BuGUI
BUtton Grid User Interface
Loading...
Searching...
No Matches
component.hpp
1#pragma once
2#include "grid.hpp"
3#include "buttons.hpp"
4
5namespace bugui
6{
10template <typename Device, typename Controller>
12 : public grid<Device, Controller>
13 , public buttons<Device, Controller>
14{ };
15
16} // namespace bugui
Empty struct for devices that do not feature labelled buttons.
Definition buttons.hpp:16
Inherits from all type of hardware components like grid, buttons... Provides the hardware type with t...
Definition component.hpp:14