X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Foutput.h;h=398781f05f547fef57f429386e20af6da4993b31;hb=b7cbf7cfbfa9de06ac8017c88b602477654c79a9;hp=09dddc772ffe7e55120fabff5350a6362d8e9eb9;hpb=73fc61ceb0586d13195c3da232bb0c733f469f50;p=pspp-builds.git diff --git a/src/output/output.h b/src/output/output.h index 09dddc77..398781f0 100644 --- a/src/output/output.h +++ b/src/output/output.h @@ -74,6 +74,8 @@ struct outp_class void (*flush) (struct outp_driver *); + void (*output_chart) (struct outp_driver *, const struct chart *); + /* special != 0 only. */ void (*submit) (struct outp_driver *, struct som_entity *); @@ -84,8 +86,6 @@ struct outp_class void (*text_metrics) (struct outp_driver *, const struct outp_text *, int *width, int *height); void (*text_draw) (struct outp_driver *, const struct outp_text *); - void (*initialise_chart)(struct outp_driver *, struct chart *); - void (*finalise_chart)(struct outp_driver *, struct chart *); }; /* Device types. */ @@ -171,9 +171,9 @@ void som_destroy_driver (struct outp_driver *); /* Common drivers. */ extern const struct outp_class ascii_class; -extern const struct outp_class postscript_class; #ifdef HAVE_CAIRO extern const struct outp_class cairo_class; #endif +extern const struct outp_class odt_class; #endif /* output/output.h */