Files
bsb2/kernel/user/app1/appl.h
Niklas Gollenstede 174fe17e89 Handout
2025-10-31 22:37:36 +01:00

33 lines
620 B
C++

// vim: set noet ts=4 sw=4:
/*! \file
* \brief Enthält die Klasse Application
*/
#pragma once
#include "../../thread/thread.h"
#include "../../types.h"
//! \brief Test application
//!
//! \note Any class derived from Thread defines an application for StuBS.
//!
class Application : public Thread {
// Prevent copies and assignments
Application(const Application&) = delete;
Application& operator=(const Application&) = delete;
public:
Application(Application&&) = delete;
/*! \brief Constructor
*
*/
Application() {}
/*! \brief Contains the application code.
*
*/
void action() override;
};