mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
17 lines
246 B
C++
17 lines
246 B
C++
#include "app.h"
|
|
#include "../apps_container.h"
|
|
|
|
extern "C" {
|
|
#include <assert.h>
|
|
}
|
|
|
|
namespace HardwareTest {
|
|
|
|
App::App(AppsContainer * container) :
|
|
::App(container, &m_keyboardController),
|
|
m_keyboardController(&m_modalViewController)
|
|
{
|
|
}
|
|
|
|
}
|