#pragma once template class LSListItem { public: LSListItem(T tObj) : tValue(tObj) { } ~LSListItem() { } LSListItem* pBefore = nullptr; LSListItem* pNext = nullptr; T tValue; };