27 lines
457 B
Rust
27 lines
457 B
Rust
use crate::audio_engine::AudioBackend;
|
|
|
|
pub(crate) struct JackAudioBackend {
|
|
pub(crate) name: String,
|
|
pub(crate) running: bool,
|
|
}
|
|
|
|
impl JackAudioBackend {
|
|
pub(crate) fn new(name: String, running: bool) -> Self {
|
|
Self { name, running }
|
|
}
|
|
}
|
|
|
|
impl AudioBackend for JackAudioBackend {
|
|
fn start_client(&self) {
|
|
todo!()
|
|
}
|
|
|
|
fn init_client(&self) {
|
|
todo!()
|
|
}
|
|
|
|
fn discover(&self) {
|
|
todo!()
|
|
}
|
|
}
|