[apps/settings] Implement structure of settings app

Change-Id: If42dc3fcb363e3ceac0dda9f89394f2535ab09be
This commit is contained in:
Émilie Feral
2017-01-27 17:52:33 +01:00
parent c4336c93b1
commit e1a77ce8aa
9 changed files with 236 additions and 0 deletions

14
apps/settings/app.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "app.h"
#include "settings_icon.h"
namespace Settings {
App::App(Container * container) :
::App(container, &m_stackViewController, "Parametre", "PARAMETRE", ImageStore::SettingsIcon),
m_preference(),
m_mainController(MainController(nullptr)),
m_stackViewController(StackViewController(&m_modalViewController, &m_mainController))
{
}
}