mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
25 lines
449 B
C++
25 lines
449 B
C++
#include "app.h"
|
|
#include "../apps_container.h"
|
|
|
|
extern "C" {
|
|
#include <assert.h>
|
|
}
|
|
|
|
namespace HardwareTest {
|
|
|
|
App * App::Descriptor::build(Container * container) {
|
|
return new App(container, this);
|
|
}
|
|
|
|
App::App(Container * container, Descriptor * descriptor) :
|
|
::App(container, &m_keyboardController, descriptor),
|
|
m_keyboardController(&m_modalViewController)
|
|
{
|
|
}
|
|
|
|
App::Descriptor * App::buildDescriptor() {
|
|
return new App::Descriptor();
|
|
}
|
|
|
|
}
|