diff options
Diffstat (limited to 'src/fig/FIG.h')
-rw-r--r-- | src/fig/FIG.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/fig/FIG.h b/src/fig/FIG.h index 915e5f3..318b788 100644 --- a/src/fig/FIG.h +++ b/src/fig/FIG.h @@ -30,11 +30,16 @@ #include <boost/shared_ptr.hpp> #include "MuxElements.h" -struct FIGRuntimeInformation { - unsigned long currentFrame; - boost::shared_ptr<dabEnsemble> ensemble; - bool factumAnalyzer; - +class FIGRuntimeInformation { + public: + FIGRuntimeInformation(boost::shared_ptr<dabEnsemble> e) : + currentFrame(0), + ensemble(e), + factumAnalyzer(false) {} + + unsigned long currentFrame; + boost::shared_ptr<dabEnsemble> ensemble; + bool factumAnalyzer; }; // Recommended FIG rates according to ETSI TR 101 496-2 Table 3.6.1 |