添加less

This commit is contained in:
邹晓航
2014-10-12 14:49:20 +08:00
parent 3bc466de15
commit ab840b2a33
3 changed files with 27 additions and 2 deletions

View File

@@ -1,7 +1,11 @@
#ifndef _DEQUE_H_
#define _DEQUE_H_
namespace TinySTL{
#include "Allocator.h"
namespace TinySTL{
//class of deque
template<class T, class Alloc = TinySTL::allocator<T>>
class deque{};
}
#endif