예제 #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);
}
예제 #8
0
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);
}
예제 #21
0
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);
}
예제 #25
0
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);
}