Visualisierung2
myDpair.cpp
Go to the documentation of this file.
1 #include "myDpair.h"
2 
3 
5 {
6  x = 0;
7  y = 0.0;
8  next = nullptr;
9 }
10 
11 
13 {
14 }
~myDpair(void)
Definition: myDpair.cpp:12
myDpair * next
Pointer auf naechstes Datenpaar.
Definition: myDpair.h:9
double y
Beschreibt den Wert/Parameter an der Stelle x.
Definition: myDpair.h:8
myDpair(void)
Definition: myDpair.cpp:4
int x
Beschreibt einen Key oder einen Index.
Definition: myDpair.h:7