diff options
author | Goran Mekić <meka@tilda.center> | 2017-12-30 15:55:53 +0100 |
---|---|---|
committer | Goran Mekić <meka@tilda.center> | 2017-12-30 15:55:53 +0100 |
commit | eb10ac5e8abd41c386d05e555406ec92a54f0164 (patch) | |
tree | 70cd659a85d49679debf49fe7da25ffa5908234a /drumgizmo/enginefactory.h | |
parent | 992750a805d21de4ffcf7f4382fea8aa1f58c3b7 (diff) | |
parent | 74f18e24e100b487184e3dd7a57fe1609f645654 (diff) |
Merge branch 'feature/oss-midi'
Diffstat (limited to 'drumgizmo/enginefactory.h')
-rw-r--r-- | drumgizmo/enginefactory.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drumgizmo/enginefactory.h b/drumgizmo/enginefactory.h index 2a1457e..0b37c6e 100644 --- a/drumgizmo/enginefactory.h +++ b/drumgizmo/enginefactory.h @@ -53,6 +53,10 @@ #include "input/jackmidi.h" #endif +#ifdef HAVE_INPUT_OSS +#include "input/ossmidi.h" +#endif + #ifdef HAVE_OUTPUT_DUMMY #include "output/outputdummy.h" #endif @@ -74,6 +78,11 @@ #endif +#ifdef HAVE_INPUT_OSSMIDI +#include "input/ossmidi.h" +#endif + + //! Factory for various input- and output engines class EngineFactory { |