From 27cfb499a2037665bc06c1094d476069b42e1b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Tue, 6 Jan 2015 13:43:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0main?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL/main.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/TinySTL/main.cpp b/TinySTL/main.cpp index e69de29..7794944 100644 --- a/TinySTL/main.cpp +++ b/TinySTL/main.cpp @@ -0,0 +1,25 @@ +#include + +#include "Algorithm.h" +#include "String.h" +#include "Vector.h" +#include "Profiler\Profiler.h" + +#include "AVLTree.h" +#include "BinarySearchTree.h" +#include "CircularBuffer.h" +#include "Deque.h" +#include "List.h" +#include "Queue.h" +#include "Stack.h" + +using namespace std; +using namespace TinySTL::Profiler; + +int main(){ + TinySTL::string str1("Hello World\n"), str2("This is TinySTL"); + std::cout << (str1 + str2) << std::endl; + + system("pause"); + return 0; +} \ No newline at end of file