From 7e971b45f22aa77421061ff2925e0458835014b2 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 4 Oct 2017 13:44:31 -0700 Subject: [PATCH] altoslib: Missing file for filter additions. Signed-off-by: Keith Packard --- altoslib/AltosFilterListener.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 altoslib/AltosFilterListener.java diff --git a/altoslib/AltosFilterListener.java b/altoslib/AltosFilterListener.java new file mode 100644 index 00000000..fe91100a --- /dev/null +++ b/altoslib/AltosFilterListener.java @@ -0,0 +1,22 @@ +/* + * Copyright © 2017 Keith Packard + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + */ + +package org.altusmetrum.altoslib_12; + +public interface AltosFilterListener { + void filter_changed(double speed_filter, double accel_filter); + + double speed_filter(); + double accel_filter(); +} -- 2.30.2