mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-08 12:53:53 +08:00
Started over.
This commit is contained in:
25
io/COutputStreamFilter.cpp
Normal file
25
io/COutputStreamFilter.cpp
Normal file
@@ -0,0 +1,25 @@
|
||||
#include "COutputStreamFilter.h"
|
||||
#include <assert.h>
|
||||
|
||||
//
|
||||
// COutputStreamFilter
|
||||
//
|
||||
|
||||
COutputStreamFilter::COutputStreamFilter(IOutputStream* stream, bool adopted) :
|
||||
m_stream(stream),
|
||||
m_adopted(adopted)
|
||||
{
|
||||
assert(m_stream != NULL);
|
||||
}
|
||||
|
||||
COutputStreamFilter::~COutputStreamFilter()
|
||||
{
|
||||
if (m_adopted) {
|
||||
delete m_stream;
|
||||
}
|
||||
}
|
||||
|
||||
IOutputStream* COutputStreamFilter::getStream() const throw()
|
||||
{
|
||||
return m_stream;
|
||||
}
|
||||
Reference in New Issue
Block a user