2016-06-14 23:45:55 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
|
|
|
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
|
2017-06-02 10:25:49 +02:00
|
|
|
import info.nightscout.androidaps.data.ProfileStore;
|
2016-06-14 23:45:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by mike on 14.06.2016.
|
|
|
|
*/
|
|
|
|
public interface ProfileInterface {
|
|
|
|
@Nullable
|
2017-06-02 10:25:49 +02:00
|
|
|
ProfileStore getProfile();
|
2017-06-13 12:08:30 +02:00
|
|
|
String getUnits();
|
2017-06-02 10:25:49 +02:00
|
|
|
String getProfileName();
|
2016-06-14 23:45:55 +02:00
|
|
|
}
|