[apps/settings] Implement setting menu with a tree (for navigation)

Change-Id: Ie27c3c25085a279c47eb53f3f1054d970b607f8b
This commit is contained in:
Émilie Feral
2017-01-30 10:25:00 +01:00
parent d17d57d3b9
commit ca9ff19c21
7 changed files with 164 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
#include "settings_node.h"
namespace Settings {
const Node * SettingsNode::children(int index) const {
return &m_children[index];
}
}