diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 21:34:03 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-12-25 21:34:03 +0100 |
commit | 2bba7d602744ccd6dab26940661f0fdfbf231af8 (patch) | |
tree | 590a5808497da3b621e29239cd56db6c89c2d6a9 /src/NullSymbol.h | |
parent | b5fd4a6ab6ac92af2141233f802e71c861cd89f4 (diff) | |
download | dabmod-2bba7d602744ccd6dab26940661f0fdfbf231af8.tar.gz dabmod-2bba7d602744ccd6dab26940661f0fdfbf231af8.tar.bz2 dabmod-2bba7d602744ccd6dab26940661f0fdfbf231af8.zip |
Refactor flowgraph and puncturing rules
Diffstat (limited to 'src/NullSymbol.h')
-rw-r--r-- | src/NullSymbol.h | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/NullSymbol.h b/src/NullSymbol.h index e8372f0..8840449 100644 --- a/src/NullSymbol.h +++ b/src/NullSymbol.h @@ -1,6 +1,11 @@ /* Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) + + Copyright (C) 2016 + Matthias P. Braendli, matthias.braendli@mpb.li + + http://opendigitalradio.org */ /* This file is part of ODR-DabMod. @@ -19,32 +24,30 @@ along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef NULL_SYMBOL_H -#define NULL_SYMBOL_H +#pragma once #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "porting.h" -#include "ModCodec.h" +#include "ModPlugin.h" #include <sys/types.h> #include <stdint.h> -class NullSymbol : public ModCodec +class NullSymbol : public ModInput { -protected: - size_t myNbCarriers; - public: NullSymbol(size_t nbCarriers); virtual ~NullSymbol(); - int process(Buffer* const dataIn, Buffer* dataOut); + int process(Buffer* dataOut); const char* name() { return "NullSymbol"; } -}; +private: + size_t myNbCarriers; + +}; -#endif // NULL_SYMBOL_H |