Added Android code
[wl-app.git] / Android / app / src / main / java / com / moiseum / wolnelektury / base / mvp / FragmentLifecyclePresenter.java
1 package com.moiseum.wolnelektury.base.mvp;
2
3 import android.os.Bundle;
4
5 /**
6  * Created by Piotr Ostrowski on 13.06.2018.
7  */
8 public abstract class FragmentLifecyclePresenter extends LifecyclePresenter {
9
10     public void onViewCreated(Bundle savedInstanceState) {
11     }
12
13     public void onDestroyView() {
14     }
15 }