// // File: LE.h // Author: pagan // // Created on 24. April 2008, 15:07 // #ifndef _LE_H #define _LE_H #include <string> using namespace std; class LE //ListenElement { private: //Schluessel brauch ich nicht, ist ja eigene Adresse string nuDa; //NutzDaten LE* next; //Zeiger auf LE, quasi so wie Struct LE* prev; public: LE(); //"Default Konstruktor" string getNuDa(); void setNuDa(string); LE* getNext(); void setNext(LE*); LE* getPrev(); void setPrev(LE*); }; #endif /* _LE_H */