10Duke Scale C++ Client
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
e
f
g
h
i
l
m
p
q
r
s
t
u
w
Functions
c
d
e
g
i
m
p
s
t
u
w
Variables
a
c
d
e
f
q
r
s
t
Typedefs
Classes
Class List
Class Index
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
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
a
b
c
d
e
f
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
Enumerations
Files
File List
▼
10Duke Scale C++ Client
Introduction
►
Client Concepts
►
Using Identity-Based Licensing
►
Using License Key for Licensing Operations
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
api
▼
src
►
config
►
http
►
licensing
►
rest
►
state
createTendukeClient.h
createTendukeClientForBrowser.h
createTendukeClientForDevice.h
createTendukeClientForLicenseKey.h
Filter.h
Paging.h
TendukeClient.h
TendukeClientWithOIDCSession.h
TendukeClientWithOIDCSessionImpl.h
►
test
►
core
►
doc
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Pages
Loading...
Searching...
No Matches
Filter.h
1
#ifndef TENDUKE_SE_FILTER_H
2
#define TENDUKE_SE_FILTER_H
3
4
#include <string>
5
#include <utility>
6
7
namespace
tenduke
{
namespace
se {
8
12
class
Filter
13
{
14
public
:
20
Filter
(
21
std::string
name
,
22
std::string
value
23
) :
name
(std::move(
name
))
24
,
value
(std::move(
value
))
25
{}
20
Filter
( {
…
}
26
30
Filter
()
31
:
Filter
(
""
,
""
)
32
{}
30
Filter
() {
…
}
33
38
bool
isEmpty
()
const
39
{
40
return
name
.empty();
41
}
38
bool
isEmpty
()
const
{
…
}
42
43
public
:
45
const
std::string
name
;
47
const
std::string
value
;
48
};
12
class
Filter
{
…
};
49
50
}}
51
52
#endif
//TENDUKE_SE_FILTER_H
tenduke::se::Filter
Filter-definition for the REST-API.
Definition
Filter.h:13
tenduke::se::Filter::Filter
Filter(std::string name, std::string value)
Constructs new instance.
Definition
Filter.h:20
tenduke::se::Filter::name
const std::string name
Field name to filter.
Definition
Filter.h:45
tenduke::se::Filter::isEmpty
bool isEmpty() const
Checks if the filter is empty.
Definition
Filter.h:38
tenduke::se::Filter::Filter
Filter()
Constructs new empty instance.
Definition
Filter.h:30
tenduke::se::Filter::value
const std::string value
Value to filter with.
Definition
Filter.h:47
tenduke
Root for classes, functions and globals of 10Duke C++ Client.
Definition
BackendConfiguration.h:7
api
src
Filter.h
Generated by
1.11.0