HexBinaryDecoderIOS::HexBinaryDecoderIOS(std::istream& istr): _buf(istr) { poco_ios_init(&_buf); }
Base64DecoderIOS::Base64DecoderIOS(std::istream& istr): _buf(istr) { poco_ios_init(&_buf); }
FIFOIOS::FIFOIOS(FIFOBuffer& fifoBuffer): _buf(fifoBuffer) { poco_ios_init(&_buf); }
CountingIOS::CountingIOS(std::istream& istr): _buf(istr) { poco_ios_init(&_buf); }
CountingIOS::CountingIOS() { poco_ios_init(&_buf); }
StreamConverterIOS::StreamConverterIOS(std::ostream& ostr, const TextEncoding& inEncoding, const TextEncoding& outEncoding, int defaultChar): _buf(ostr, inEncoding, outEncoding, defaultChar) { poco_ios_init(&_buf); }
DeflatingIOS::DeflatingIOS(std::istream& istr, DeflatingStreamBuf::StreamType type, int level): _buf(istr, type, level) { poco_ios_init(&_buf); }
LineEndingConverterIOS::LineEndingConverterIOS(std::istream& istr): _buf(istr) { poco_ios_init(&_buf); }
HTTPResponseIOS::HTTPResponseIOS(std::istream& istr): _buf(istr) { poco_ios_init(&_buf); }
InflatingIOS::InflatingIOS(std::istream& istr, InflatingStreamBuf::StreamType type): _buf(istr, type) { poco_ios_init(&_buf); }
InflatingIOS::InflatingIOS(std::istream& istr, int windowBits): _buf(istr, windowBits) { poco_ios_init(&_buf); }
RedisIOS::RedisIOS(Net::StreamSocket& redis): _buf(redis) { poco_ios_init(&_buf); }
ZipIOS::ZipIOS(std::ostream& ostr, ZipLocalFileHeader& fileEntry, bool reposition): _buf(ostr, fileEntry, reposition) { poco_ios_init(&_buf); }
ZipIOS::ZipIOS(std::istream& istr, const ZipLocalFileHeader& fileEntry, bool reposition): _buf(istr, fileEntry, reposition) { poco_ios_init(&_buf); }
NullIOS::NullIOS() { poco_ios_init(&_buf); }
TeeIOS::TeeIOS(std::istream& istr): _buf(istr) { poco_ios_init(&_buf); }
MemoryIOS::MemoryIOS(char* pBuffer, std::streamsize bufferSize): _buf(pBuffer, bufferSize) { poco_ios_init(&_buf); }
TeeIOS::TeeIOS(std::ostream& ostr): _buf(ostr) { poco_ios_init(&_buf); }
MultipartIOS::MultipartIOS(std::istream& istr, const std::string& boundary): _buf(istr, boundary) { poco_ios_init(&_buf); }
TeeIOS::TeeIOS() { poco_ios_init(&_buf); }
QuotedPrintableEncoderIOS::QuotedPrintableEncoderIOS(std::ostream& ostr): _buf(ostr) { poco_ios_init(&_buf); }
SocketIOS::SocketIOS(const Socket& socket): _buf(socket) { poco_ios_init(&_buf); }
CountingIOS::CountingIOS(std::ostream& ostr): _buf(ostr) { poco_ios_init(&_buf); }
PipeIOS::PipeIOS(const Pipe& pipe, openmode mode): _buf(pipe, mode) { poco_ios_init(&_buf); }
BinaryIOS::BinaryIOS() { poco_ios_init(&_buf); }
//============================================================================// SerialPortIOS::SerialPortIOS(Serial &serial) : _buf(serial) { poco_ios_init(&_buf); }
FIFOIOS::FIFOIOS(std::size_t length): _buf(length) { poco_ios_init(&_buf); }
LogIOS::LogIOS(Logger& logger, Message::Priority priority): _buf(logger, priority) { poco_ios_init(&_buf); }
FIFOIOS::FIFOIOS(char* pBuffer, std::size_t length): _buf(pBuffer, length) { poco_ios_init(&_buf); }
PartialIOS::PartialIOS(std::ostream& ostr, std::size_t start, std::size_t end, bool initStream): _buf(ostr, start, end, initStream) { poco_ios_init(&_buf); }