Audacity
3.2.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
p
r
s
t
u
v
Enumerations
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
w
z
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
h
i
k
l
m
o
p
r
s
t
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
y
Related Functions
a
b
c
d
e
f
g
l
m
n
o
p
r
s
t
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
c
d
e
f
k
l
m
n
o
p
r
s
t
u
v
z
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
libraries
lib-network-manager
curl
CurlStringList.h
Go to the documentation of this file.
1
/*!********************************************************************
2
3
Audacity: A Digital Audio Editor
4
5
@file CurlStringList.h
6
@brief Declare a RAII wrapper for the curl_slist.
7
8
Dmitry Vedenko
9
**********************************************************************/
10
11
#pragma once
12
13
#include <string>
14
15
struct
curl_slist;
16
17
namespace
audacity
18
{
19
namespace
network_manager
20
{
21
22
class
CurlStringList
final
23
{
24
public
:
25
CurlStringList
() =
default
;
26
CurlStringList
(
CurlStringList
&& rhs)
noexcept
;
27
28
~CurlStringList
() noexcept;
29
30
CurlStringList
& operator = (
CurlStringList
&& rhs) noexcept;
31
32
void
append
(const
std
::
string
&
string
) noexcept;
33
void
append
(const
char
*
string
) noexcept;
34
35
curl_slist*
getCurlList
() const noexcept;
36
37
private:
38
curl_slist*
mList
{
nullptr
};
39
};
40
41
}
42
}
audacity::network_manager::CurlStringList
Definition:
CurlStringList.h:23
audacity::network_manager::CurlStringList::append
void append(const std::string &string) noexcept
Definition:
CurlStringList.cpp:38
audacity::network_manager::CurlStringList::CurlStringList
CurlStringList()=default
audacity::network_manager::CurlStringList::mList
curl_slist * mList
Definition:
CurlStringList.h:38
audacity::network_manager::CurlStringList::getCurlList
curl_slist * getCurlList() const noexcept
Definition:
CurlStringList.cpp:48
audacity::network_manager::CurlStringList::~CurlStringList
~CurlStringList() noexcept
Definition:
CurlStringList.cpp:27
audacity
Definition:
FileHistory.h:23
std
STL namespace.
Generated by
1.9.3