userver
C++ Async Framework
Toggle main menu visibility
Documentation
API Groups
Namespaces
Reference
Class List
Class Index
File List
Macros
All
e
i
l
r
t
u
Functions
Macros
e
i
l
r
t
u
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
handler_auth_config.hpp
1
#
pragma
once
2
3
#
include
<
string
>
4
#
include
<
vector
>
5
6
#
include
<
userver
/
yaml_config
/
yaml_config
.
hpp
>
7
8
USERVER_NAMESPACE_BEGIN
9
10
namespace
server::handlers::auth {
11
12
class
HandlerAuthConfig
final
:
public
yaml_config
::
YamlConfig
{
13
public
:
14
explicit
HandlerAuthConfig(
yaml_config
::
YamlConfig
value);
15
16
const
std::vector<std::string>& GetTypes()
const
{
return
types_; }
17
18
private
:
19
std::vector<std::string> types_;
20
};
12
class
HandlerAuthConfig
final
:
public
yaml_config
::
YamlConfig
{
…
};
21
22
HandlerAuthConfig Parse(
const
yaml_config
::
YamlConfig
& value,
formats
::
parse
::
To
<HandlerAuthConfig>);
23
24
}
// namespace server::handlers::auth
25
26
USERVER_NAMESPACE_END
userver
server
handlers
auth
handler_auth_config.hpp
Generated on Wed Apr 30 2025 15:49:04 for userver by
Doxygen
1.13.2