This commit is contained in:
2026-02-10 16:37:28 +01:00
parent 67291f7f19
commit dd352266dc
13 changed files with 175 additions and 0 deletions

26
user/app2/kappl.h Normal file
View File

@@ -0,0 +1,26 @@
// vim: set noet ts=4 sw=4:
/*! \file
* \brief Enthält die Klasse KeyboardApplication
*/
#pragma once
#include "../../thread/thread.h"
#include "../../types.h"
/*! \brief Keyboard Application
*
*/
class KeyboardApplication : public Thread {
// Prevent copies and assignments
KeyboardApplication(const KeyboardApplication&) = delete;
KeyboardApplication& operator=(const KeyboardApplication&) = delete;
public:
KeyboardApplication() {}
/*! \brief Contains the application code.
*
*/
void action() override;
};