Aktualizr
C++ SOTA Client
All Classes Namespaces Files Functions Variables Enumerations Enumerator Pages
secondary_config.h
1 #ifndef PRIMARY_SECONDARY_CONFIG_H_
2 #define PRIMARY_SECONDARY_CONFIG_H_
3 
4 namespace Primary {
5 
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