Files
termix/engine/src/audio_engine/jack_ab.rs
Nikolai Rodionov af97801d31
Some checks failed
ci/woodpecker/push/code_tests Pipeline failed
ci/woodpecker/push/pre_commit_test Pipeline was successful
Trying to come up with the structure
2025-12-01 14:35:28 +01:00

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!()
}
}