示例#1
0
HexBinaryDecoderIOS::HexBinaryDecoderIOS(std::istream& istr): _buf(istr)
{
	poco_ios_init(&_buf);
}
示例#2
0
Base64DecoderIOS::Base64DecoderIOS(std::istream& istr): _buf(istr)
{
	poco_ios_init(&_buf);
}
示例#3
0
FIFOIOS::FIFOIOS(FIFOBuffer& fifoBuffer): _buf(fifoBuffer)
{
	poco_ios_init(&_buf);
}
示例#4
0
CountingIOS::CountingIOS(std::istream& istr): _buf(istr)
{
    poco_ios_init(&_buf);
}
示例#5
0
CountingIOS::CountingIOS()
{
    poco_ios_init(&_buf);
}
示例#6
0
StreamConverterIOS::StreamConverterIOS(std::ostream& ostr, const TextEncoding& inEncoding, const TextEncoding& outEncoding, int defaultChar): 
	_buf(ostr, inEncoding, outEncoding, defaultChar)
{
	poco_ios_init(&_buf);
}
示例#7
0
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);
}
示例#9
0
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);
}
示例#12
0
RedisIOS::RedisIOS(Net::StreamSocket& redis):
	_buf(redis)
{
	poco_ios_init(&_buf);
}
示例#13
0
ZipIOS::ZipIOS(std::ostream& ostr, ZipLocalFileHeader& fileEntry, bool reposition): _buf(ostr, fileEntry, reposition)
{
    poco_ios_init(&_buf);
}
示例#14
0
ZipIOS::ZipIOS(std::istream& istr, const ZipLocalFileHeader& fileEntry, bool reposition): _buf(istr, fileEntry, reposition)
{
    poco_ios_init(&_buf);
}
示例#15
0
文件: NullStream.cpp 项目: 12307/poco
NullIOS::NullIOS()
{
	poco_ios_init(&_buf);
}
示例#16
0
TeeIOS::TeeIOS(std::istream& istr): _buf(istr)
{
	poco_ios_init(&_buf);
}
示例#17
0
MemoryIOS::MemoryIOS(char* pBuffer, std::streamsize bufferSize):
    _buf(pBuffer, bufferSize)
{
    poco_ios_init(&_buf);
}
示例#18
0
TeeIOS::TeeIOS(std::ostream& ostr): _buf(ostr)
{
	poco_ios_init(&_buf);
}
示例#19
0
MultipartIOS::MultipartIOS(std::istream& istr, const std::string& boundary):
	_buf(istr, boundary)
{
	poco_ios_init(&_buf);
}
示例#20
0
TeeIOS::TeeIOS()
{
	poco_ios_init(&_buf);
}
QuotedPrintableEncoderIOS::QuotedPrintableEncoderIOS(std::ostream& ostr): _buf(ostr)
{
	poco_ios_init(&_buf);
}
示例#22
0
SocketIOS::SocketIOS(const Socket& socket):
	_buf(socket)
{
	poco_ios_init(&_buf);
}
示例#23
0
CountingIOS::CountingIOS(std::ostream& ostr): _buf(ostr)
{
    poco_ios_init(&_buf);
}
示例#24
0
文件: PipeStream.cpp 项目: 12307/poco
PipeIOS::PipeIOS(const Pipe& pipe, openmode mode):
	_buf(pipe, mode)
{
	poco_ios_init(&_buf);
}
BinaryIOS::BinaryIOS() {
	poco_ios_init(&_buf);
}
示例#26
0
//============================================================================//
SerialPortIOS::SerialPortIOS(Serial &serial) :
    _buf(serial)
{
    poco_ios_init(&_buf);
}
示例#27
0
FIFOIOS::FIFOIOS(std::size_t length): _buf(length)
{
	poco_ios_init(&_buf);
}
示例#28
0
LogIOS::LogIOS(Logger& logger, Message::Priority priority):
	_buf(logger, priority)
{
	poco_ios_init(&_buf);
}
示例#29
0
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);
}