From 09430fc4ffa8dfb3ba73163d848e066fab74136f Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 1 Apr 2016 13:07:50 +0200 Subject: Remove old carousel --- src/MuxElements.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/MuxElements.h') diff --git a/src/MuxElements.h b/src/MuxElements.h index 97b1390..44af574 100644 --- a/src/MuxElements.h +++ b/src/MuxElements.h @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include "dabOutput/dabOutput.h" @@ -39,6 +40,19 @@ #include "RemoteControl.h" #include "Eti.h" +class MuxInitException : public std::exception +{ + public: + MuxInitException(const std::string m = "ODR-DabMux initialisation error") + throw() + : msg(m) {} + ~MuxInitException(void) throw() {} + const char* what() const throw() { return msg.c_str(); } + private: + std::string msg; +}; + + enum class subchannel_type_t { Audio = 0, DataDmb = 1, -- cgit v1.2.3