9#if __DCL_HAVE_ALLOC_DEBUG
10#undef __DCL_ALLOC_LEVEL
11#define __DCL_ALLOC_LEVEL __DCL_ALLOC_INTERNAL
19#if __DCL_HAVE_THIS_FILE__
26void OutputStream::close()
31void OutputStream::flush()
36int OutputStream::vprintf(
const char* _format, va_list _arglist)
41 ByteBuffer* buf = ByteBuffer::create(256);
42 int n = ByteBuffer::vformat(buf, _format, _arglist);
43 write(buf->data(), n);
48int OutputStream::printf(
const char* _format, ...)
52 va_start(arglist, _format);
53 int r = vprintf(_format, arglist);
#define __DCL_ASSERT_PARAM(expr)
#define IMPLEMENT_CLASSINFO(class_name, base_class_name)
DCLCAPI OutputStream & operator<<(OutputStream &out, const __endl &) __DCL_THROWS1(IOException *)
DCLCVAR const struct __endl endl