PALISADE Lattice Crypto Library  1.11.9
A lattice crypto library for software engineers by software engineers.
xset.h
1 // @file TODO
2 //
3 // @copyright Copyright (c) TODO
4 
5 #ifndef _XSET_H
6 #define _XSET_H
7 
8 #include <functional>
9 #include <set>
10 #include "stl_allocator.h"
11 
12 template <class _Kty, class _Pr = std::less<_Kty>,
13  class _Alloc = stl_allocator<_Kty> >
14 class xset : public std::set<_Kty, _Pr, _Alloc> {};
15 
17 template <class _Kty, class _Pr = std::less<_Kty>,
18  class _Alloc = stl_allocator<_Kty> >
19 class xmultiset : public std::multiset<_Kty, _Pr, _Alloc> {};
20 
21 #endif
Definition: xset.h:14
Definition: xset.h:19