AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
AWSStack.h
Go to the documentation of this file.
1
6#pragma once
7
9
12
13#include <deque>
14#include <stack>
15
16namespace Aws
17{
18
19template< typename T > using Stack = std::stack< T, Deque< T > >;
20
21} // namespace Aws
std::stack< T, Deque< T > > Stack
Definition: AWSStack.h:19