add vorgabe05
This commit is contained in:
26
c_os/lib/Chain.h
Executable file
26
c_os/lib/Chain.h
Executable 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 ©); // Verhindere Kopieren
|
||||
|
||||
public:
|
||||
Chain* next;
|
||||
|
||||
Chain() {}
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user