From 4af324b83a2e2181cb6008c5a7538bb6a3ee5a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Sat, 15 Nov 2014 10:00:36 +0800 Subject: [PATCH] add List --- TinySTL/List.h | 9 +++++++++ TinySTL/TinySTL.vcxproj | 2 ++ TinySTL/TinySTL.vcxproj.filters | 12 +++++++++--- 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 TinySTL/List.h diff --git a/TinySTL/List.h b/TinySTL/List.h new file mode 100644 index 0000000..2bcd7d9 --- /dev/null +++ b/TinySTL/List.h @@ -0,0 +1,9 @@ +#ifndef _LIST_H_ +#define _LIST_H_ + +namespace TinySTL{ + template + class List{}; +} + +#endif \ No newline at end of file diff --git a/TinySTL/TinySTL.vcxproj b/TinySTL/TinySTL.vcxproj index e780ece..94ec448 100644 --- a/TinySTL/TinySTL.vcxproj +++ b/TinySTL/TinySTL.vcxproj @@ -81,6 +81,7 @@ + @@ -95,6 +96,7 @@ + diff --git a/TinySTL/TinySTL.vcxproj.filters b/TinySTL/TinySTL.vcxproj.filters index 2a2a082..eff29ab 100644 --- a/TinySTL/TinySTL.vcxproj.filters +++ b/TinySTL/TinySTL.vcxproj.filters @@ -21,15 +21,18 @@ - - 源文件 - 头文件\Profiler Test + + 源文件 + + + Test + @@ -92,5 +95,8 @@ 头文件 + + 头文件 + \ No newline at end of file