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/InputMemory.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/InputMemory.h')
-rw-r--r-- | src/InputMemory.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/InputMemory.h b/src/InputMemory.h index 6d794a1..e5a6512 100644 --- a/src/InputMemory.h +++ b/src/InputMemory.h @@ -19,15 +19,14 @@ along with ODR-DabMod. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef INPUT_MEMORY_H -#define INPUT_MEMORY_H +#pragma once #ifdef HAVE_CONFIG_H # include <config.h> #endif -#include "ModInput.h" +#include "ModPlugin.h" class InputMemory : public ModInput @@ -35,7 +34,7 @@ class InputMemory : public ModInput public: InputMemory(Buffer* dataIn); virtual ~InputMemory(); - virtual int process(Buffer* dataIn, Buffer* dataOut); + virtual int process(Buffer* dataOut); const char* name() { return "InputMemory"; } void setInput(Buffer* dataIn); @@ -44,5 +43,3 @@ protected: Buffer *myDataIn; }; - -#endif // INPUT_MEMORY_H |