27 lines
533 B
C++
27 lines
533 B
C++
// 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;
|
|
};
|