BuGUI
BUtton Grid User Interface
Loading...
Searching...
No Matches
hardware.hpp
1#pragma once
2#include <hardware/protocol/midi.hpp>
3
4namespace bugui
5{
8template <typename Device, typename Controller>
9struct hardware
10 : public midi<Device, Controller>
11{
12 explicit hardware(Controller* ctrlr)
13 : midi<Device, Controller>{ctrlr}
14 { }
15};
16
17} // namespace bugui