comparison libinterp/corefcn/gl2ps-print.h @ 21199:dd6605e1eaea

make gl2ps_renderer implementation private * gl2ps-print.h: Rename from gl2ps-renderer.h. * gl2ps-print.cc: Rename from gl2ps-renderer.cc. * libinterp/corefcn/module.mk: Update. * Canvas.cc, __init_fltk__.cc, __osmesa_print__.cc: Update.
author John W. Eaton <jwe@octave.org>
date Thu, 04 Feb 2016 18:07:46 -0500
parents libinterp/corefcn/gl2ps-renderer.h@1adcdc518d9e
children 1473547f50f5
comparison
equal deleted inserted replaced
21198:1adcdc518d9e 21199:dd6605e1eaea
1 /*
2
3 Copyright (C) 2009-2015 Shai Ayal
4
5 This file is part of Octave.
6
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20
21 */
22
23 #if ! defined (octave_gl2ps_renderer_h)
24 #define octave_gl2ps_renderer_h 1
25
26 #include <string>
27
28 #include "graphics.h"
29
30 extern OCTINTERP_API void
31 gl2ps_print (const graphics_object& fig, const std::string& stream,
32 const std::string& term);
33
34 #endif