new file: LSListItem.h new file: LSMacros.h modified: LSString.h modified: LSString.vcxproj new file: LSVector.h modified: main.cpp
22 lines
No EOL
205 B
C++
22 lines
No EOL
205 B
C++
#pragma once
|
|
|
|
template <class T>
|
|
|
|
class LSListItem
|
|
{
|
|
public:
|
|
LSListItem(T tObj)
|
|
: tValue(tObj)
|
|
{
|
|
|
|
}
|
|
|
|
~LSListItem()
|
|
{
|
|
|
|
}
|
|
|
|
LSListItem* pBefore = nullptr;
|
|
LSListItem* pNext = nullptr;
|
|
T tValue;
|
|
}; |