Files
Upsilon/apps/home/app.cpp
Émilie Feral e3e0fb2120 [escher] In app, add an upperName
Change-Id: Iea37749e446c721b5e85af063681e2a98c0e4f37
2017-01-27 11:50:42 +01:00

17 lines
320 B
C++

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