diff options
Diffstat (limited to 'src/inputs/Input.h')
-rw-r--r-- | src/inputs/Input.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/inputs/Input.h b/src/inputs/Input.h index 943b498..42c2ef7 100644 --- a/src/inputs/Input.h +++ b/src/inputs/Input.h @@ -51,7 +51,6 @@ class InputBase { virtual int Close(); virtual int Clean(); // TODO destructor - virtual int Rewind(); }; /********************************************/ @@ -69,7 +68,6 @@ class InputTest : InputBase { int SetBitrate(int bitrate); int Close(); int Clean(); - int Rewind(); private: unsigned long counter; @@ -91,6 +89,7 @@ class InputFile : InputBase { int Close(); int Rewind(); protected: + long ReadData(void* data, size_t size, unsigned int tries); std::string filename; int file; // the file descriptor }; @@ -119,3 +118,5 @@ class InputDabplusFile : InputFile { #endif +#endif + |