diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-11 15:37:32 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2025-09-11 15:37:32 +0200 |
commit | c84727c8ec0f99d66d1ad7d4716de79b6235d4d1 (patch) | |
tree | f0ba66da2af142a7eb2413263b54a72e2184d2c1 /src/ConfigParser.h | |
parent | 90e9f058450cfb8bc2f06b02c60ba8cb533c2738 (diff) | |
download | dabmux-c84727c8ec0f99d66d1ad7d4716de79b6235d4d1.tar.gz dabmux-c84727c8ec0f99d66d1ad7d4716de79b6235d4d1.tar.bz2 dabmux-c84727c8ec0f99d66d1ad7d4716de79b6235d4d1.zip |
Add runtime linkage-set reload
Diffstat (limited to 'src/ConfigParser.h')
-rw-r--r-- | src/ConfigParser.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ConfigParser.h b/src/ConfigParser.h index 9ca6c81..038247b 100644 --- a/src/ConfigParser.h +++ b/src/ConfigParser.h @@ -3,7 +3,7 @@ 2011, 2012 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2016 + Copyright (C) 2025 Matthias P. Braendli, matthias.braendli@mpb.li The Configuration parser sets up the ensemble according @@ -34,6 +34,10 @@ #include <boost/property_tree/ptree.hpp> #include <memory> -void parse_ptree(boost::property_tree::ptree& pt, +void parse_ptree( + boost::property_tree::ptree& pt, std::shared_ptr<dabEnsemble> ensemble); +void parse_linkage( + const boost::optional<boost::property_tree::ptree&> pt_linking, + std::vector<std::shared_ptr<LinkageSet> >& linkageSets); |