#pragma once
namespace Datastructures {
template <typename T>
class LinkedList
{
public:
LinkedList();
~LinkedList();
private:
};
}