PALISADE Lattice Crypto Library  1.11.9
A lattice crypto library for software engineers by software engineers.
xsstream.h
1 // @file TODO
2 //
3 // @copyright Copyright (c) TODO
4 
5 #ifndef _XSSTREAM_H
6 #define _XSSTREAM_H
7 
8 #include <sstream>
9 #include <string>
10 
11 #include "stl_allocator.h"
12 
13 typedef std::basic_stringstream<char, std::char_traits<char>,
15  xstringstream;
16 typedef std::basic_ostringstream<char, std::char_traits<char>,
18  xostringstream;
19 
20 typedef std::basic_stringstream<wchar_t, std::char_traits<wchar_t>,
22  xwstringstream;
23 typedef std::basic_ostringstream<wchar_t, std::char_traits<wchar_t>,
25  xwostringstream;
26 
27 #endif
stl_allocator is STL-compatible allocator used to provide fixed block allocations.
Definition: stl_allocator.h:14