diff options
author | David Robillard <d@drobilla.net> | 2020-11-29 17:19:06 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-29 18:03:31 +0100 |
commit | 9964717f1c5bf56f24c81ff5597085a62e966a7b (patch) | |
tree | d75f55e06a890d308ef2254078c52ed5ec60ed81 /src/Patchage.hpp | |
parent | 78b359c44b67f4f1fff9e31dd9243af5e996f38a (diff) | |
download | patchage-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.hpp | 6 |
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; |