Aktualizr
C++ SOTA Client
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
Functions
a
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
Variables
Enumerations
Files
File List
File Members
All
Functions
Enumerations
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Pages
src
libaktualizr
primary
secondary_config.h
1
#ifndef PRIMARY_SECONDARY_CONFIG_H_
2
#define PRIMARY_SECONDARY_CONFIG_H_
3
4
namespace
Primary {
5
6
class
SecondaryConfig
{
7
public
:
8
explicit
SecondaryConfig
(
const
char
* type) : type_(type) {}
9
virtual
const
char
* type()
const
{
return
type_; }
10
virtual
~
SecondaryConfig
() =
default
;
11
12
private
:
13
const
char
*
const
type_;
14
};
15
16
}
// namespace Primary
17
18
#endif // PRIMARY_SECONDARY_CONFIG_H_
Primary::SecondaryConfig
Definition:
secondary_config.h:6
Generated by
1.8.17