doc: update copyright line for 2021
[adg.git] / src / adg / adg-projection-private.h
blob574af4b424d0cfdca1c2fb0aba04d9945bf9f160
1 /* ADG - Automatic Drawing Generation
2 * Copyright (C) 2007-2021 Nicola Fontana <ntd at entidi.it>
3 * modify it under the terms of the GNU Lesser General Public
4 * License as published by the Free Software Foundation; either
5 * version 2 of the License, or (at your option) any later version.
7 * This library is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * Lesser General Public License for more details.
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with this library; if not, write to the
14 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
15 * Boston, MA 02110-1301, USA.
19 #ifndef __ADG_PROJECTION_PRIVATE_H__
20 #define __ADG_PROJECTION_PRIVATE_H__
23 G_BEGIN_DECLS
25 typedef struct _AdgProjectionClassPrivate AdgProjectionClassPrivate;
26 typedef struct _AdgProjectionPrivate AdgProjectionPrivate;
28 struct _AdgProjectionClassPrivate {
29 AdgProjectionScheme scheme;
30 AdgPath *symbol;
31 AdgPath *axis;
32 CpmlExtents extents;
35 struct _AdgProjectionPrivate {
36 AdgDress symbol_dress;
37 AdgDress axis_dress;
38 AdgProjectionScheme scheme;
41 G_END_DECLS
44 #endif /* __ADG_PROJECTION_PRIVATE_H__ */