Files
TinySTL/TinySTL/List.h
邹晓航 4af324b83a add List
2014-11-15 10:00:36 +08:00

9 lines
97 B
C++

#ifndef _LIST_H_
#define _LIST_H_
namespace TinySTL{
template<class T>
class List{};
}
#endif