diff options
author | lordjaxom <lordjaxom> | 2005-03-12 12:54:19 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-03-12 12:54:19 +0000 |
commit | 3aa01282662a5907cc283a151bba8a939672a065 (patch) | |
tree | f873536f0360d823834dbd886dc45d22fabd22c1 /server/streamer.h | |
parent | 523779f9aa17796b3a6c8d6a40a63efdf289e0ec (diff) | |
download | vdr-plugin-streamdev-3aa01282662a5907cc283a151bba8a939672a065.tar.gz vdr-plugin-streamdev-3aa01282662a5907cc283a151bba8a939672a065.tar.bz2 |
- fixed pure virtual crash in server
Diffstat (limited to 'server/streamer.h')
-rw-r--r-- | server/streamer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/streamer.h b/server/streamer.h index ed6c5cd..c27677c 100644 --- a/server/streamer.h +++ b/server/streamer.h @@ -1,5 +1,5 @@ /* - * $Id: streamer.h,v 1.6 2005/02/11 17:02:22 lordjaxom Exp $ + * $Id: streamer.h,v 1.7 2005/03/12 12:54:19 lordjaxom Exp $ */ #ifndef VDR_STREAMDEV_STREAMER_H @@ -61,8 +61,8 @@ public: virtual uchar *Get(int &Count) { return m_SendBuffer->Get(Count); } virtual void Del(int Count) { m_SendBuffer->Del(Count); } - virtual void Detach(void) = 0; - virtual void Attach(void) = 0; + virtual void Detach(void) {} + virtual void Attach(void) {} }; #endif // VDR_STREAMDEV_STREAMER_H |