pub struct NativeManager {}
impl NativeManager {
pub fn create() -> NativeManager {
NativeManager { }
}
pub fn map(&self) -> (usize, usize, bool) {
(0, 0, true) }
pub fn is_plugged_in(&self) -> bool {
false
}
pub fn disconnect(&mut self) -> () {
}
pub fn name(&self) -> String {
"unknown".to_string()
}
pub fn poll_event(&self, _: &mut (Vec<f32>, Vec<bool>)) -> bool {
false
}
}
impl Drop for NativeManager {
fn drop(&mut self) -> () {
}
}