Algorithmen_Datenstrukturen/Uebung 2/ExtendedListItem.cpp

7 lines
181 B
C++

#include "ExtendedListItem.h"
std::string ExtendedListItem::toString(void) {
return std::to_string(this->key);
}
ExtendedListItem::ExtendedListItem(int key) { this->key = key; }