mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
17 lines
304 B
C++
17 lines
304 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"),
|
|
m_controller(Controller(&m_modalViewController, container))
|
|
{
|
|
assert(container->appAtIndex(0) == this);
|
|
}
|
|
|
|
}
|