Files
Upsilon/apps/hardware_test/app.cpp
Émilie Feral 96733dbbdc [apps] Rule of 5 (3)
Change-Id: Ia85b23a09e9debd62b4f3590463a4f16454ef4b7
2017-05-09 14:33:53 +02:00

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)
{
}
}