#pragma once
#include <string>
class ExtendedListItem {
public:
ExtendedListItem(int key);
std::string toString();
ExtendedListItem *previous;
ExtendedListItem *next;
int key;
};