From 94435b4ae3bd53b734363b42536bec553e50e71c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Wed, 24 Sep 2014 08:01:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0circular=20buffer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL/CircularBuffer.h | 8 ++++++++ TinySTL/TinySTL.vcxproj | 1 + TinySTL/TinySTL.vcxproj.filters | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 TinySTL/CircularBuffer.h diff --git a/TinySTL/CircularBuffer.h b/TinySTL/CircularBuffer.h new file mode 100644 index 0000000..a047605 --- /dev/null +++ b/TinySTL/CircularBuffer.h @@ -0,0 +1,8 @@ +#ifndef _CIRCULAR_BUFFER_H_ +#define _CIRCULAR_BUFFER_H_ + +namespace TinySTL{ + +} + +#endif \ No newline at end of file diff --git a/TinySTL/TinySTL.vcxproj b/TinySTL/TinySTL.vcxproj index 28f5850..5cc5d5c 100644 --- a/TinySTL/TinySTL.vcxproj +++ b/TinySTL/TinySTL.vcxproj @@ -83,6 +83,7 @@ + diff --git a/TinySTL/TinySTL.vcxproj.filters b/TinySTL/TinySTL.vcxproj.filters index 5fd5a09..23127ef 100644 --- a/TinySTL/TinySTL.vcxproj.filters +++ b/TinySTL/TinySTL.vcxproj.filters @@ -59,5 +59,8 @@ 头文件 + + 头文件 + \ No newline at end of file