Skip to content

Instantly share code, notes, and snippets.

@HarinTrivedi
Created January 20, 2018 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarinTrivedi/fc0a657780990425d32820837ef4ba33 to your computer and use it in GitHub Desktop.
Save HarinTrivedi/fc0a657780990425d32820837ef4ba33 to your computer and use it in GitHub Desktop.
package com.hlabexamples.commonmvp.base.mvp.presenter;
import com.hlabexamples.commonmvp.base.mvp.view.BaseView;
/**
* Created by H.T. on 01/12/17.
*/
public interface BasePresenter<T extends BaseView> {
void attachView(T view);
void onDestroy();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment