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

26
c_os/lib/Chain.h Executable file
View File

@ -0,0 +1,26 @@
/*****************************************************************************
* *
* C H A I N *
* *
*---------------------------------------------------------------------------*
* Beschreibung: Implementierung einer einfach verketteten Liste von *
* Chain Objekten. *
* *
* Autor: Olaf Spinczyk, TU Dortmund *
*****************************************************************************/
#ifndef __Chain_include__
#define __Chain_include__
class Chain {
private:
Chain(const Chain &copy); // Verhindere Kopieren
public:
Chain* next;
Chain() {}
};
#endif