Visualisierung2
myList.cpp
Go to the documentation of this file.
1 #include "myList.h"
2 
3 
5 {
6  index= 0;
7  next = nullptr;
8 }
9 
10 
12 {
13 }
int index
Listenindex.
Definition: myList.h:7
~myList(void)
Definition: myList.cpp:11
myList(void)
Definition: myList.cpp:4
myList * next
Pointer zum naechsten Listenelement.
Definition: myList.h:8