1 #ifndef __PBIO_API__PBIO__STL_WRAPS__WRAP_OSTREAM_H_
2 #define __PBIO_API__PBIO__STL_WRAPS__WRAP_OSTREAM_H_
19 virtual void write(
const char* buf, uint64_t size) = 0;
22 void write_func(
void* stream,
const void* data, uint64_t bytes_count)
24 ((WrapOStream*)stream)->write((
const char*) data, bytes_count);
33 #endif // __PBIO_API__PBIO__STL_WRAPS__WRAP_OSTREAM_H_