new file: LSList.h
new file: LSListItem.h new file: LSMacros.h modified: LSString.h modified: LSString.vcxproj new file: LSVector.h modified: main.cpp
This commit is contained in:
parent
6e22717a81
commit
4f9b04c049
7 changed files with 194 additions and 26 deletions
22
LSString/LSListItem.h
Normal file
22
LSString/LSListItem.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#pragma once
|
||||
|
||||
template <class T>
|
||||
|
||||
class LSListItem
|
||||
{
|
||||
public:
|
||||
LSListItem(T tObj)
|
||||
: tValue(tObj)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
~LSListItem()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
LSListItem* pBefore = nullptr;
|
||||
LSListItem* pNext = nullptr;
|
||||
T tValue;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue