Scribus
Open source desktop publishing at your fingertips
libwpg.h
1 /* libwpg
2  * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
3  * Copyright (C) 2004 Marc Oude Kotte (marc@solcon.nl)
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02111-1301 USA
19  *
20  * For further information visit http://libwpg.sourceforge.net
21  */
22 
23 /* "This product is not manufactured, approved, or supported by
24  * Corel Corporation or Corel Corporation Limited."
25  */
26 
27 #ifndef __LIBWPG_H__
28 #define __LIBWPG_H__
29 
30 #define LIBWPG_VERSION_MAJOR 0
31 #define LIBWPG_VERSION_MINOR 1
32 #define LIBWPG_VERSION_REVISION 4
33 #define LIBWPG_VERSION_STRING "0.1.4"
34 
35 #include "WPGraphics.h"
36 #include "WPGPaintInterface.h"
37 
38 #include "WPGColor.h"
39 #include "WPGPen.h"
40 #include "WPGBrush.h"
41 #include "WPGGradient.h"
42 #include "WPGPath.h"
43 #include "WPGPoint.h"
44 #include "WPGRect.h"
45 #include "WPGBitmap.h"
46 #include "WPGBinaryData.h"
47 
48 #endif