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