gimp/tools/gcg/ex/file_ostream.gc

16 lines
194 B
Plaintext

#include "stream.gh"
package{
module <stdio.h> {
foreign FILE;
}
}
module Ex.FileOstream;
class FileOstream : Ostream{
.FILE* file;
public static FileOstream* open(g.char* filename);
}