Files
Upsilon/apps/home/app.cpp
Romain Goyet 654024e860 [apps] Use the Home app
Change-Id: I25d881f237ce4b7db0b92afe68596416d3704781
2016-10-03 11:24:20 +02:00

21 lines
318 B
C++

#include "app.h"
#include "../apps_container.h"
extern "C" {
#include <assert.h>
}
namespace Home {
App::App(AppsContainer * container) :
::App(),
m_controller(Controller(this, container))
{
assert(container->appAtIndex(0) == this);
}
ViewController * App::rootViewController() {
return &m_controller;
}
}