16 lines
222 B
C
16 lines
222 B
C
|
|
#ifndef STRUCT_ISTREAM_INHERITANCE
|
|
#define STRUCT_ISTREAM_INHERITANCE
|
|
|
|
struct istream;
|
|
|
|
struct istream_inheritance
|
|
{
|
|
void (*read)(
|
|
struct istream*);
|
|
|
|
void (*free)(
|
|
struct istream*);
|
|
};
|
|
|
|
#endif
|