Files
Upsilon/apps/settings/app.h
Émilie Feral 4348bd7bae [apps] Implement a reset in apps (clear memory)
Change-Id: I158d5db92196ccfd5400a95de16ee4804e426e65
2017-04-07 15:36:03 +02:00

21 lines
341 B
C++

#ifndef SETTINGS_APP_H
#define SETTINGS_APP_H
#include <escher.h>
#include "main_controller.h"
#include "../shared/resettable_app.h"
namespace Settings {
class App : public Shared::ResettableApp {
public:
App(Container * container);
private:
MainController m_mainController;
StackViewController m_stackViewController;
};
}
#endif