mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-22 23:30:37 +01:00
21 lines
342 B
C++
21 lines
342 B
C++
#ifndef SETTINGS_APP_H
|
|
#define SETTINGS_APP_H
|
|
|
|
#include <escher.h>
|
|
#include "main_controller.h"
|
|
#include "../preferences.h"
|
|
|
|
namespace Settings {
|
|
|
|
class App : public ::App {
|
|
public:
|
|
App(Container * container, Preferences * preferences);
|
|
private:
|
|
MainController m_mainController;
|
|
StackViewController m_stackViewController;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|