Added Android code
[wl-app.git] / Android / app / src / main / java / com / moiseum / wolnelektury / base / mvp / FragmentLifecyclePresenter.java
diff --git a/Android/app/src/main/java/com/moiseum/wolnelektury/base/mvp/FragmentLifecyclePresenter.java b/Android/app/src/main/java/com/moiseum/wolnelektury/base/mvp/FragmentLifecyclePresenter.java
new file mode 100644 (file)
index 0000000..6b2d897
--- /dev/null
@@ -0,0 +1,15 @@
+package com.moiseum.wolnelektury.base.mvp;
+
+import android.os.Bundle;
+
+/**
+ * Created by Piotr Ostrowski on 13.06.2018.
+ */
+public abstract class FragmentLifecyclePresenter extends LifecyclePresenter {
+
+    public void onViewCreated(Bundle savedInstanceState) {
+    }
+
+    public void onDestroyView() {
+    }
+}