mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 23:00:45 +01:00
17 lines
277 B
C++
17 lines
277 B
C++
#include "app.h"
|
|
#include "../apps_container.h"
|
|
extern "C" {
|
|
#include <assert.h>
|
|
}
|
|
|
|
namespace Home {
|
|
|
|
App::App(AppsContainer * container) :
|
|
::App(&m_controller),
|
|
m_controller(Controller(&m_modalViewController, container))
|
|
{
|
|
assert(container->appAtIndex(0) == this);
|
|
}
|
|
|
|
}
|