Skip to content

Commit 158497d

Browse files
committed
adding BaseView and BasePresenter to the root
1 parent 13910df commit 158497d

File tree

1 file changed

+7
-0
lines changed
  • todo-mvp-loaders/app/src/main/java/com/example/android/architecture/blueprints/todoapp/util

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.example.android.architecture.blueprints.todoapp.util;
2+
3+
public interface BaseView<T> {
4+
5+
void setPresenter(T presenter);
6+
7+
}

0 commit comments

Comments
 (0)