AWS SDK for C++

AWS SDK for C++ Version 1.11.827

Loading...
Searching...
No Matches
AWSSet.h
1
6#pragma once
7
8#include <aws/core/Core_EXPORTS.h>
9
10#include <aws/core/utils/memory/stl/AWSAllocator.h>
11
12#include <set>
13#include <unordered_set>
14
15namespace Aws
16{
17
18template< typename T > using Set = std::set< T, std::less< T >, Aws::Allocator< T > >;
19template< typename T > using UnorderedSet = std::unordered_set< T, std::hash< T >, std::equal_to< T >, Aws::Allocator< T > >;
20
21} // namespace Aws
std::allocator< T > Allocator
std::unordered_set< T, std::hash< T >, std::equal_to< T >, Aws::Allocator< T > > UnorderedSet
Definition AWSSet.h:19
std::set< T, std::less< T >, Aws::Allocator< T > > Set
Definition AWSSet.h:18