diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 12:04:46 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 12:04:46 +0100 |
commit | 770703c9c5c926be760af836bee26e554e81a71c (patch) | |
tree | f9368db373d91d48d9476790d9dbdcbbcf3dc5dc /src/ConfigParser.h | |
parent | 28d794ab7d47e4f2585ac73f8a69c9c68962b678 (diff) | |
download | dabmod-770703c9c5c926be760af836bee26e554e81a71c.tar.gz dabmod-770703c9c5c926be760af836bee26e554e81a71c.tar.bz2 dabmod-770703c9c5c926be760af836bee26e554e81a71c.zip |
Add option to show metadata for file output
Diffstat (limited to 'src/ConfigParser.h')
-rw-r--r-- | src/ConfigParser.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ConfigParser.h b/src/ConfigParser.h index 0463470..dc5ac4f 100644 --- a/src/ConfigParser.h +++ b/src/ConfigParser.h @@ -42,12 +42,13 @@ struct mod_settings_t { std::string outputName; - int useZeroMQOutput = 0; + bool useZeroMQOutput = false; std::string zmqOutputSocketType = ""; - int useFileOutput = 0; + bool useFileOutput = false; std::string fileOutputFormat = "complexf"; - int useUHDOutput = 0; - int useSoapyOutput = 0; + bool fileOutputShowMetadata = false; + bool useUHDOutput = false; + bool useSoapyOutput = false; size_t outputRate = 2048000; size_t clockRate = 0; |