Files
Upsilon/apps/hardware_test/app.cpp
Émilie Feral 0bc0044f80 [apps] First version of keyboard hardware test
Change-Id: Ic322575f22f1576eacf0068bc3aa09257e2ae3f4
2017-03-30 12:30:37 +02:00

17 lines
266 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(KeyboardController(&m_modalViewController))
{
}
}