1 #ifndef __PBIO_API__PBIO__STL_WRAPS__WRAP_ISTREAM_H_
2 #define __PBIO_API__PBIO__STL_WRAPS__WRAP_ISTREAM_H_
19 virtual void read(
char* buf, uint64_t size) = 0;
22 void read_func(
void* stream,
void* data, uint64_t bytes_count)
24 ((WrapIStream*)stream)->read((
char*) data, bytes_count);
33 #endif // __PBIO_API__PBIO__STL_WRAPS__WRAP_ISTREAM_H_