ALib C++ Library
by
Library Version:
2412 R0
Documentation generated by
Loading...
Searching...
No Matches
home
dev
A-Worx
ALib
src
alib
monomem
aliases
monomem/aliases/stringvector.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_STRINGVECTOR
9
#define HPP_ALIB_MONOMEM_ALIASES_STRINGVECTOR
10
#pragma once
11
#if !defined(DOXYGEN)
12
# include "
alib/alib.hpp
"
13
#endif
14
ALIB_ASSERT_MODULE
(MONOMEM)
15
ALIB_ASSERT_MODULE
(STRINGS)
16
17
#include "alib/strings/util/stringvector.hpp"
18
#include "
alib/monomem/poolallocator.hpp
"
19
20
namespace
alib
21
{
22
/// Type alias in namespace \b alib.
23
using
StringVectorMA
=
strings::util::TStringVector<character, MonoAllocator>
;
24
25
/// Type alias in namespace \b alib.
26
using
NStringVectorMA
=
strings::util::TStringVector<nchar , MonoAllocator>
;
27
28
/// Type alias in namespace \b alib.
29
using
WStringVectorMA
=
strings::util::TStringVector<wchar , MonoAllocator>
;
30
31
32
/// Type alias in namespace \b alib.
33
using
StringVectorPA
=
strings::util::TStringVector<character , PoolAllocator>
;
34
35
/// Type alias in namespace \b alib.
36
using
NStringVectorPA
=
strings::util::TStringVector<nchar , PoolAllocator>
;
37
38
/// Type alias in namespace \b alib.
39
using
WStringVectorPA
=
strings::util::TStringVector<wchar , PoolAllocator>
;
40
41
}
// namespace [alib]
42
43
44
#endif
// HPP_ALIB_MONOMEM_ALIASES_STRINGVECTOR
45
alib.hpp
alib::strings::util::TStringVector< character, MonoAllocator >
ALIB_ASSERT_MODULE
#define ALIB_ASSERT_MODULE(modulename)
Definition
alib.hpp:223
alib
Definition
alib.cpp:69
poolallocator.hpp