PALISADE Lattice Crypto Library  1.11.9
A lattice crypto library for software engineers by software engineers.
xvector.h
1 // @file TODO
2 //
3 // @copyright Copyright (c) TODO
4 
5 // See
6 // http://www.codeproject.com/Articles/1089905/A-Custom-STL-std-allocator-Replacement-Improves-Performance-
7 // written by dcousins BBN
8 
9 #ifndef _XVECTOR_H
10 #define _XVECTOR_H
11 
12 #include <vector>
13 #include "stl_allocator.h"
14 
15 template <class _Ty, class _Ax = stl_allocator<_Ty> >
16 class xvector : public std::vector<_Ty, _Ax> {};
17 
18 #endif
Definition: xvector.h:16