PALISADE Lattice Crypto Library  1.11.9
A lattice crypto library for software engineers by software engineers.
xstring.h
1 // @file TODO
2 //
3 // @copyright Copyright (c) TODO
4 
5 #ifndef _XSTRING_H
6 #define _XSTRING_H
7 
8 #include <string>
9 #include "stl_allocator.h"
10 
11 typedef std::basic_string<char, std::char_traits<char>, stl_allocator<char>>
12  xstring;
13 typedef std::basic_string<wchar_t, std::char_traits<wchar_t>,
15  xwstring;
16 
17 #endif
stl_allocator is STL-compatible allocator used to provide fixed block allocations.
Definition: stl_allocator.h:14