Presenter
mvp/Presenter.hpp
The Presenter base class that all application-specific presenters should derive from. Only contains activate and deactivate virtual functions which are called automatically during screen transition.
Public Functions
virtual void | activate() |
Place initialization code for the Presenter here. | |
virtual void | deactivate() |
Place cleanup code for the Presenter here. | |
virtual | ~Presenter() |
Finalizes an instance of the Presenter class. | |
Protected Functions
Public Functions Documentation
activate
virtual void activate | ( | ) |
deactivate
virtual void deactivate | ( | ) |
~Presenter
virtual ~Presenter | ( | ) |
Finalizes an instance of the Presenter class.