remove unused NewDriverView screen
This commit is contained in:
@ -1,36 +0,0 @@
|
||||
#ifndef NEWDRIVERVIEWPRESENTER_HPP
|
||||
#define NEWDRIVERVIEWPRESENTER_HPP
|
||||
|
||||
#include <gui/model/ModelListener.hpp>
|
||||
#include <mvp/Presenter.hpp>
|
||||
|
||||
using namespace touchgfx;
|
||||
|
||||
class NewDriverViewView;
|
||||
|
||||
class NewDriverViewPresenter : public touchgfx::Presenter, public ModelListener
|
||||
{
|
||||
public:
|
||||
NewDriverViewPresenter(NewDriverViewView& v);
|
||||
|
||||
/**
|
||||
* The activate function is called automatically when this screen is "switched in"
|
||||
* (ie. made active). Initialization logic can be placed here.
|
||||
*/
|
||||
virtual void activate();
|
||||
|
||||
/**
|
||||
* The deactivate function is called automatically when this screen is "switched out"
|
||||
* (ie. made inactive). Teardown functionality can be placed here.
|
||||
*/
|
||||
virtual void deactivate();
|
||||
|
||||
virtual ~NewDriverViewPresenter() {}
|
||||
|
||||
private:
|
||||
NewDriverViewPresenter();
|
||||
|
||||
NewDriverViewView& view;
|
||||
};
|
||||
|
||||
#endif // NEWDRIVERVIEWPRESENTER_HPP
|
||||
@ -1,17 +0,0 @@
|
||||
#ifndef NEWDRIVERVIEWVIEW_HPP
|
||||
#define NEWDRIVERVIEWVIEW_HPP
|
||||
|
||||
#include <gui_generated/newdriverview_screen/NewDriverViewViewBase.hpp>
|
||||
#include <gui/newdriverview_screen/NewDriverViewPresenter.hpp>
|
||||
|
||||
class NewDriverViewView : public NewDriverViewViewBase
|
||||
{
|
||||
public:
|
||||
NewDriverViewView();
|
||||
virtual ~NewDriverViewView() {}
|
||||
virtual void setupScreen();
|
||||
virtual void tearDownScreen();
|
||||
protected:
|
||||
};
|
||||
|
||||
#endif // NEWDRIVERVIEWVIEW_HPP
|
||||
Reference in New Issue
Block a user