1

add vorgabe05

This commit is contained in:
churl
2022-05-20 16:16:24 +02:00
parent 2b41893743
commit bdfe784340
11 changed files with 461 additions and 3 deletions

25
c_os/user/CoroutineDemo.h Executable file
View File

@ -0,0 +1,25 @@
/*****************************************************************************
* *
* C O R O U T I N E D E M O *
* *
*---------------------------------------------------------------------------*
* Beschreibung: Einstieg in eine Anwendung. *
* *
* Autor: Michael Schoettner, HHU, 15.8.2016 *
*****************************************************************************/
#ifndef __coroutinedemo_include__
#define __coroutinedemo_include__
class CoroutineDemo {
private:
CoroutineDemo(const CoroutineDemo& copy); // Verhindere Kopieren
public:
CoroutineDemo() {}
// Koroutine-Startmethode
void main();
};
#endif