2016-06-21 00:34:36 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
|
|
|
|
2018-07-27 13:41:25 +02:00
|
|
|
import android.content.Intent;
|
|
|
|
|
2016-06-21 00:34:36 +02:00
|
|
|
/**
|
|
|
|
* Created by mike on 20.06.2016.
|
|
|
|
*/
|
2018-06-22 18:28:05 +02:00
|
|
|
public interface BgSourceInterface {
|
2018-06-29 22:43:54 +02:00
|
|
|
boolean advancedFilteringSupported();
|
2018-07-27 13:41:25 +02:00
|
|
|
|
|
|
|
void handleNewData(Intent intent);
|
2018-06-22 18:28:05 +02:00
|
|
|
}
|