ALib C++ Library
Library Version: 2412 R0
Documentation generated by doxygen
Loading...
Searching...
No Matches
stddeque.hpp
Go to the documentation of this file.
1//==================================================================================================
2/// \file
3/// This header file is part of module \alib_monomem of the \aliblong.
4///
5/// \emoji :copyright: 2013-2024 A-Worx GmbH, Germany.
6/// Published under \ref mainpage_license "Boost Software License".
7//==================================================================================================
8#ifndef HPP_ALIB_MONOMEM_ALIASES_STDDEQUE
9#define HPP_ALIB_MONOMEM_ALIASES_STDDEQUE
10#pragma once
11#if !defined(DOXYGEN)
12# include "alib/alib.hpp"
13#endif
14ALIB_ASSERT_MODULE(MONOMEM)
15#include "alib/monomem/poolallocator.hpp"
16#include <deque>
17namespace alib
18{
19 /// Type alias in namespace \b alib.
20 template<typename T>
21 using StdDequeMono = std::deque<T, SCAMono<T>>;
22
23 /// Type alias in namespace \b alib.
24 template<typename T>
25 using StdDequePool = std::deque<T, SCAPool<T>>;
26
27} // namespace [alib]
28
29
30#endif // HPP_ALIB_MONOMEM_ALIASES_STDDEQUE
31
#define ALIB_ASSERT_MODULE(modulename)
Definition alib.hpp:223
Definition alib.cpp:69
std::deque< T, SCAPool< T > > StdDequePool
Type alias in namespace alib.
Definition stddeque.hpp:25
std::deque< T, SCAMono< T > > StdDequeMono
Type alias in namespace alib.
Definition stddeque.hpp:21