summaryrefslogtreecommitdiffstats
path: root/src/Patchage.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-29 17:19:06 +0100
committerDavid Robillard <d@drobilla.net>2020-11-29 18:03:31 +0100
commit9964717f1c5bf56f24c81ff5597085a62e966a7b (patch)
treed75f55e06a890d308ef2254078c52ed5ec60ed81 /src/Patchage.hpp
parent78b359c44b67f4f1fff9e31dd9243af5e996f38a (diff)
downloadpatchage-9964717f1c5bf56f24c81ff5597085a62e966a7b.tar.gz
patchage-9964717f1c5bf56f24c81ff5597085a62e966a7b.tar.bz2
patchage-9964717f1c5bf56f24c81ff5597085a62e966a7b.zip
Use Jack driver exclusively through AudioDriver interface
Diffstat (limited to 'src/Patchage.hpp')
-rw-r--r--src/Patchage.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Patchage.hpp b/src/Patchage.hpp
index c48ff05..0e81afb 100644
--- a/src/Patchage.hpp
+++ b/src/Patchage.hpp
@@ -54,7 +54,7 @@
#include <set>
#include <string>
-class JackDriver;
+class AudioDriver;
class PatchageCanvas;
class Configuration;
@@ -159,8 +159,8 @@ protected:
std::shared_ptr<PatchageCanvas> _canvas;
- std::unique_ptr<JackDriver> _jack_driver;
- Configuration _conf;
+ std::unique_ptr<AudioDriver> _jack_driver;
+ Configuration _conf;
Gtk::Main* _gtk_main;