dsfv
C++
code posted
by
HTML
created at 04 Sep 13:24
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 |
// Struct to carry formatter attributes and virtual methods struct formatter { FILE *fp; // Virtual Methods here! void (*formatter_header2) (formatter*, char* ); void (*formatter_body2) (formatter*, char* ); void (*formatter_preamble_) (formatter *cthis, char* string); void (*formatter_postamble_) (formatter *cthis, char* string); }; /* * Formatter class public methods */ |
395 Bytes in 2 ms with coderay