ALib C++ Library
Library Version: 2412 R0
Documentation generated by doxygen
Loading...
Searching...
No Matches
stdvector.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_STDVECTOR
9#define HPP_ALIB_MONOMEM_ALIASES_STDVECTOR
10#pragma once
11#if !defined(DOXYGEN)
12# include "alib/alib.hpp"
13#endif
14ALIB_ASSERT_MODULE(MONOMEM)
15#include <vector>
17namespace alib
18{
19 /// Type alias in namespace \b alib.
20 template<typename T>
21 using StdVectorMono = std::vector<T, SCAMono<T>>;
22
23 /// Type alias in namespace \b alib.
24 template<typename T>
25 using StdVectorPool = std::vector<T, SCAPool<T>>;
26
27} // namespace [alib]
28
29
30#endif // HPP_ALIB_MONOMEM_ALIASES_STDVECTOR
31
#define ALIB_ASSERT_MODULE(modulename)
Definition alib.hpp:223
Definition alib.cpp:69
std::vector< T, SCAMono< T > > StdVectorMono
Type alias in namespace alib.
Definition stdvector.hpp:21
std::vector< T, SCAPool< T > > StdVectorPool
Type alias in namespace alib.
Definition stdvector.hpp:25