Ardour  9.0-pre0-582-g084a23a80d
midi_device_info.h
Go to the documentation of this file.
1 #ifndef MIDI_DEVICE_INFO_H
2 #define MIDI_DEVICE_INFO_H
3 
4 #include <cstdint>
5 #include <string>
6 
7 /* midi settings */
8 struct MidiDeviceInfo {
9  MidiDeviceInfo(const std::string& dev_name)
10  : device_name(dev_name)
11  , enable(true)
14  {
15  }
16 
17  std::string device_name;
18  bool enable;
21 };
22 
23 #endif // MIDI_DEVICE_INFO_H
uint32_t systemic_output_latency
MidiDeviceInfo(const std::string &dev_name)
uint32_t systemic_input_latency
std::string device_name