Files
Upsilon/apps/hardware_test/app.h
Émilie Feral 06de0dd9db [escher] Only one app is on the heap at one time
Change-Id: I6c77601cb0cc883083a4dd05370ca543fa7951cc
2017-05-18 14:16:41 +02:00

27 lines
469 B
C++

#ifndef HARDWARE_TEST_APP_H
#define HARDWARE_TEST_APP_H
#include <escher.h>
#include "keyboard_controller.h"
class AppsContainer;
namespace HardwareTest {
class App : public ::App {
public:
class Descriptor : public ::App::Descriptor {
public:
App * build(Container * container) override;
};
static Descriptor * buildDescriptor();
private:
App(Container * container, Descriptor * descriptor);
KeyboardController m_keyboardController;
};
}
#endif