#include "stdafx.h"
#include "..\\Include\\OutputStream.h"

using namespace std;

namespace kaBasicClasses {

OutputStream::OutputStream( OutputStreamBuffer* b ) 
	: theBuffer(b), ostream(b)
{}

OutputStream& OutputStream::flush()
{
	theBuffer->flush();
	ostream::flush();
	return *this;
}

}; //kaBasicClasses

Hosted by www.Geocities.ws

1