diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-10 12:03:24 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-10 12:03:24 +0200 |
commit | 90e9f058450cfb8bc2f06b02c60ba8cb533c2738 (patch) | |
tree | c7d74e890c59ee258d018cf78441a896e24ffb1e /src/MuxElements.h | |
parent | 1b6ce454b7538e5847c30c39c8d4acdbdec810f4 (diff) | |
download | dabmux-90e9f058450cfb8bc2f06b02c60ba8cb533c2738.tar.gz dabmux-90e9f058450cfb8bc2f06b02c60ba8cb533c2738.tar.bz2 dabmux-90e9f058450cfb8bc2f06b02c60ba8cb533c2738.zip |
Remove some old _WIN32 ifdefs, restructure includes
Diffstat (limited to 'src/MuxElements.h')
-rw-r--r-- | src/MuxElements.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/MuxElements.h b/src/MuxElements.h index d118df9..0266671 100644 --- a/src/MuxElements.h +++ b/src/MuxElements.h @@ -33,16 +33,13 @@ #include <memory> #include <mutex> #include <string> -#include <functional> #include <exception> -#include <algorithm> #include <chrono> #include <optional> #include <stdint.h> #include "dabOutput/dabOutput.h" #include "input/inputs.h" #include "RemoteControl.h" -#include "Eti.h" // Protection levels and bitrates for UEP. const unsigned char ProtectionLevelTable[64] = { @@ -315,7 +312,10 @@ class dabEnsemble : public RemoteControllable { virtual const json::map_t get_all_values() const; /* Check if the Linkage Sets are valid */ - bool validate_linkage_sets(void); + bool validate_linkage_sets() const; + static bool validate_linkage_sets( + const vec_sp_service& services, + std::vector<std::shared_ptr<LinkageSet> > linkagesets); /* all fields are public, since this was a struct before */ uint16_t id = 0; |