mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-27 10:38:48 +03:00
6aba3a6f57
being listed and they'd have to be added to every one. just doesn't seem worth the trouble.
26 lines
407 B
C++
26 lines
407 B
C++
#include "CInputStreamFilter.h"
|
|
#include <assert.h>
|
|
|
|
//
|
|
// CInputStreamFilter
|
|
//
|
|
|
|
CInputStreamFilter::CInputStreamFilter(IInputStream* stream, bool adopted) :
|
|
m_stream(stream),
|
|
m_adopted(adopted)
|
|
{
|
|
assert(m_stream != NULL);
|
|
}
|
|
|
|
CInputStreamFilter::~CInputStreamFilter()
|
|
{
|
|
if (m_adopted) {
|
|
delete m_stream;
|
|
}
|
|
}
|
|
|
|
IInputStream* CInputStreamFilter::getStream() const
|
|
{
|
|
return m_stream;
|
|
}
|