Skip to content

Commit

Permalink
Mark NetworkStream and VideoFileStream as ClosableStream
Browse files Browse the repository at this point in the history
  • Loading branch information
palana committed Sep 24, 2014
1 parent 3caa30c commit 3069c2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/OBS.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ enum PacketType
PacketType_Audio
};

class NetworkStream
class NetworkStream : public ClosableStream
{
public:
virtual ~NetworkStream() {}
Expand All @@ -135,7 +135,7 @@ struct TimedPacket

//-------------------------------------------------------------------

class VideoFileStream
class VideoFileStream : public ClosableStream
{
public:
virtual ~VideoFileStream() {}
Expand Down

0 comments on commit 3069c2e

Please sign in to comment.