output.pxd 361 B

123456789101112
  1. from util.generic.string cimport TStringBuf
  2. cdef extern from "<util/stream/output.h>" nogil:
  3. cdef cppclass IOutputStream:
  4. IOutputStream()
  5. void Flush() except+
  6. void Finish() except+
  7. void WriteChar "Write"(char) except+
  8. void WriteBuf "Write"(const TStringBuf) except+
  9. void Write(const void*, size_t) except+