1 /*********************************************************************************************************************************** 2 Buffer IO Read 3 4 Read from a Buffer object using the IoRead interface. 5 ***********************************************************************************************************************************/ 6 #ifndef COMMON_IO_BUFFERREAD_H 7 #define COMMON_IO_BUFFERREAD_H 8 9 #include "common/io/read.h" 10 11 /*********************************************************************************************************************************** 12 Constructors 13 ***********************************************************************************************************************************/ 14 IoRead *ioBufferReadNew(const Buffer *buffer); 15 16 #endif 17