mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
We assume the root parent is the App. This works well because each view controller is a Responder. Change-Id: I5d90053949a4ffbdb78746cc85430a15138e48e7
14 lines
303 B
C++
14 lines
303 B
C++
#include "graph_app.h"
|
|
|
|
GraphApp::GraphApp() :
|
|
App(),
|
|
m_listController(ListController(nullptr)),
|
|
m_graphController(GraphController(nullptr)),
|
|
m_tabViewController(this, &m_listController, &m_graphController)
|
|
{
|
|
}
|
|
|
|
ViewController * GraphApp::rootViewController() {
|
|
return &m_tabViewController;
|
|
}
|