#ifndef STRUCT_ISTREAM_INHERITANCE #define STRUCT_ISTREAM_INHERITANCE struct istream; struct istream_inheritance { void (*read)( struct istream*); void (*free)( struct istream*); }; #endif