DelegateMQ
Loading...
Searching...
No Matches
xlist.h
Go to the documentation of this file.
1#ifndef _XLIST_H
2#define _XLIST_H
3
4#include "stl_allocator.h"
5#include <list>
6
7// xlist uses a fix-block memory allocator
8template <typename T, typename Alloc = stl_allocator<T>>
9using xlist = std::list<T, Alloc>;
10
11#if 0 // Deprecated
12template<class _Ty,
13 class _Ax = stl_allocator<_Ty> >
14 class xlist
15 : public std::list<_Ty, _Ax>
16 {
17 };
18#endif
19
20#endif
21
std::list< T, Alloc > xlist
Definition DelegateOpt.h:40
Definition stl_allocator.h:28