summaryrefslogtreecommitdiff
path: root/src/include/printer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/printer.h')
-rw-r--r--src/include/printer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/printer.h b/src/include/printer.h
index beae4d9a..8ad8e719 100644
--- a/src/include/printer.h
+++ b/src/include/printer.h
@@ -18,6 +18,8 @@ You should have received a copy of the GNU General Public License along
with groff; see the file COPYING. If not, write to the Free Software
Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
+#include "color.h"
+
struct environment {
int fontno;
int size;
@@ -25,6 +27,8 @@ struct environment {
int vpos;
int height;
int slant;
+ color *col;
+ color *fill;
};
struct font;
@@ -55,7 +59,6 @@ public:
virtual font *make_font(const char *nm);
virtual void end_of_line();
virtual void special(char *arg, const environment *env, char type = 'p');
- static int adjust_arc_center(const int *, double *);
protected:
font_pointer_list *font_list;