X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fchart.h;h=ac0bd372d9397733236d06bf4165fc93f81bd617;hb=fb429d05d61e959fcd4a0116e9b4327967845f9d;hp=b05b5ba41accc41eeeccda56ff1a7bbeadb996a3;hpb=e0c37920bb2cc46ee559e3992470572d4b4d27e6;p=pspp diff --git a/src/output/chart.h b/src/output/chart.h index b05b5ba41a..ac0bd372d9 100644 --- a/src/output/chart.h +++ b/src/output/chart.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009, 2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -17,19 +17,29 @@ #ifndef OUTPUT_CHART_H #define OUTPUT_CHART_H 1 -/* requires but doesn't #include it. */ -#include +/* Charts. -#ifdef HAVE_CHARTS -#include -#else -#include -#endif + A chart is abstract. Every actual chart is a subclass of chart. */ -struct chart; +#include + +/* A chart. + + The members of struct chart should not be accessed directly. Use one + of the accessor functions defined below. */ +struct chart + { + int ref_cnt; + const struct chart_class *class; /* Subclass. */ + char *title; /* May be null if there is no title. */ + }; struct chart *chart_ref (const struct chart *); void chart_unref (struct chart *); +bool chart_is_shared (const struct chart *); + +const char *chart_get_title (const struct chart *); +void chart_set_title (struct chart *, const char *); void chart_submit (struct chart *);