Nix (Dev) 3.5.10
dev - 3.5.10 - 1af9301
Loading...
Searching...
No Matches
RedundancySettings.hpp
Go to the documentation of this file.
1
2#ifndef IV_SRC_MODEL_COMMS_REDUNDANCYSETTINGS_HPP_
3#define IV_SRC_MODEL_COMMS_REDUNDANCYSETTINGS_HPP_
4
6
8{
9struct Settings
10{
11 bool load(const iv::file::xml::node &node);
12 bool save(iv::file::xml::node &node) const;
13
15
16private:
17 struct Keys
18 {
19 static constexpr std::string_view sendsLomChannels {"SendsLomChannels"};
20 };
21
23 {
24 static constexpr bool sendsLomChannels {false};
25 };
26};
27}// namespace iv::model::comms::redundancy
28
29#endif//IV_SRC_MODEL_COMMS_REDUNDANCYSETTINGS_HPP_
Definition xmlFile.hpp:15
Definition RedundancySettings.cpp:5
Definition RedundancySettings.hpp:23
static constexpr bool sendsLomChannels
Definition RedundancySettings.hpp:24
Definition RedundancySettings.hpp:18
static constexpr std::string_view sendsLomChannels
Definition RedundancySettings.hpp:19
Definition RedundancySettings.hpp:10
bool load(const iv::file::xml::node &node)
Definition RedundancySettings.cpp:6
bool save(iv::file::xml::node &node) const
Definition RedundancySettings.cpp:12
bool sendsLomChannels
Definition RedundancySettings.hpp:14