9 lines
97 B
C++
9 lines
97 B
C++
#ifndef _LIST_H_
|
|
#define _LIST_H_
|
|
|
|
namespace TinySTL{
|
|
template<class T>
|
|
class List{};
|
|
}
|
|
|
|
#endif |