mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-15 20:01:33 +00:00
Alphabetizes includes and resolves quite a few instances of indirect inclusions, making the requirements of several interfaces explicit. This also trims out includes that aren't actually necessary (likely due to changes in the API over time).
13 lines
220 B
C++
13 lines
220 B
C++
#include "lib/audiodev/MIDICommon.hpp"
|
|
|
|
#include "boo/audiodev/IMIDIPort.hpp"
|
|
|
|
namespace boo {
|
|
|
|
IMIDIPort::~IMIDIPort() {}
|
|
IMIDIIn::~IMIDIIn() {}
|
|
IMIDIOut::~IMIDIOut() {}
|
|
IMIDIInOut::~IMIDIInOut() {}
|
|
|
|
} // namespace boo
|