Kigs Framework  Doc version 0.8
Open source multi purpose Rapid Application Development framework
kstllist.h
1 #ifndef __KSTLLIST_H__
2 #define __KSTLLIST_H__
3 
4 #include "Platform/Core/CorePlatformDefines.h"
5 #include <list>
6 
7 #ifndef _NO_KSTL_OVERLOADING_
8 #include "CoreSTLAllocator.h"
9 namespace kstl
10 {
11  template<typename T>
12  using list = std::list<T, CoreSTLAllocator<T>>;
13 }
14 #else //_NO_KSTL_OVERLOADING_
15 
16 namespace kstl = std;
17 
18 #endif //_NO_KSTL_OVERLOADING_
19 
20 #endif