AWS SDK for C++

AWS SDK for C++ Version 1.11.827

Loading...
Searching...
No Matches
AWSVector.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 <vector>
13
14namespace Aws
15{
16
17template< typename T > using Vector = std::vector< T, Aws::Allocator< T > >;
18
19} // namespace Aws
std::vector< T, Aws::Allocator< T > > Vector
Definition AWSVector.h:17