17 lines
101 B
C++
17 lines
101 B
C++
#pragma once
|
|
|
|
template <class T>
|
|
|
|
class LSVector
|
|
{
|
|
LSVector()
|
|
{
|
|
|
|
}
|
|
|
|
~LSVector()
|
|
{
|
|
|
|
}
|
|
};
|
|
|