From 2bba7d602744ccd6dab26940661f0fdfbf231af8 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sun, 25 Dec 2016 21:34:03 +0100 Subject: Refactor flowgraph and puncturing rules --- src/InputMemory.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/InputMemory.h') 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 . */ -#ifndef INPUT_MEMORY_H -#define INPUT_MEMORY_H +#pragma once #ifdef HAVE_CONFIG_H # include #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 -- cgit v1.2.3