Aktualizr
C++ SOTA Client
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
Definition:
secondary.cc:15
Primary::SecondaryConfig
Definition:
secondary_config.h:6
Generated by
1.8.13