2016-06-14 23:45:55 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
2016-06-10 18:50:46 +02:00
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
2016-06-14 23:45:55 +02:00
|
|
|
import info.nightscout.androidaps.plugins.APSResult;
|
|
|
|
|
2016-06-10 18:50:46 +02:00
|
|
|
/**
|
|
|
|
* Created by mike on 10.06.2016.
|
|
|
|
*/
|
2016-06-14 23:45:55 +02:00
|
|
|
public interface APSInterface {
|
2016-06-10 18:50:46 +02:00
|
|
|
public APSResult getLastAPSResult();
|
|
|
|
public Date getLastAPSRun();
|
|
|
|
|
2016-06-11 20:45:40 +02:00
|
|
|
public void invoke();
|
2016-06-10 18:50:46 +02:00
|
|
|
}
|