2016-06-14 23:45:55 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
|
|
|
|
2016-06-23 17:07:38 +02:00
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
import info.nightscout.androidaps.db.TempBasal;
|
2016-06-14 23:45:55 +02:00
|
|
|
import info.nightscout.androidaps.plugins.OpenAPSMA.IobTotal;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by mike on 14.06.2016.
|
|
|
|
*/
|
|
|
|
public interface TempBasalsInterface {
|
2016-06-19 13:17:16 +02:00
|
|
|
void updateTotalIOB();
|
2016-06-14 23:45:55 +02:00
|
|
|
IobTotal getLastCalculation();
|
2016-06-23 17:07:38 +02:00
|
|
|
|
|
|
|
TempBasal getTempBasal (Date time);
|
2016-06-14 23:45:55 +02:00
|
|
|
}
|