#pragma once #include "List.h" template class PtrList : public List { public: using List::List; virtual ~PtrList(); }; #include "PtrList.hpp"