From c6c84ec3bf444dbed9d1bf61980d04add35329ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Mon, 29 Dec 2014 11:43:09 +0800 Subject: [PATCH] add --- TinySTL/Test/PriorityQueueTest.cpp | 7 +++++++ TinySTL/Test/PriorityQueueTest.h | 20 ++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 TinySTL/Test/PriorityQueueTest.cpp create mode 100644 TinySTL/Test/PriorityQueueTest.h diff --git a/TinySTL/Test/PriorityQueueTest.cpp b/TinySTL/Test/PriorityQueueTest.cpp new file mode 100644 index 0000000..ede02c1 --- /dev/null +++ b/TinySTL/Test/PriorityQueueTest.cpp @@ -0,0 +1,7 @@ +#include "PriorityQueueTest.h" + +namespace TinySTL{ + namespace PriorityQueueTest{ + + } +} \ No newline at end of file diff --git a/TinySTL/Test/PriorityQueueTest.h b/TinySTL/Test/PriorityQueueTest.h new file mode 100644 index 0000000..9a3f25c --- /dev/null +++ b/TinySTL/Test/PriorityQueueTest.h @@ -0,0 +1,20 @@ +#ifndef _PRIORITY_QUEUE_TEST_H_ +#define _PRIORITY_QUEUE_TEST_H_ + +#include "TestUtil.h" + +#include "../Queue.h" +#include + +#include + +namespace TinySTL{ + namespace PriorityQueueTest{ + template + using stdPQ = std::priority_queue < T > ; + template + using tsPQ = TinySTL::priority_queue < T > ; + } +} + +#endif \ No newline at end of file