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