1 /* LIBGIMP - The GIMP Library
2  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
3  *
4  * This library is free software: you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 3 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library.  If not, see
16  * <https://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef __GIMP_BASE_H__
20 #define __GIMP_BASE_H__
21 
22 #define __GIMP_BASE_H_INSIDE__
23 
24 #include <libgimpbase/gimpbasetypes.h>
25 
26 #include <libgimpbase/gimpchecks.h>
27 #include <libgimpbase/gimpcpuaccel.h>
28 #include <libgimpbase/gimpdatafiles.h>
29 #include <libgimpbase/gimpenv.h>
30 #include <libgimpbase/gimplimits.h>
31 #include <libgimpbase/gimpmemsize.h>
32 #include <libgimpbase/gimpmetadata.h>
33 #include <libgimpbase/gimpparasite.h>
34 #include <libgimpbase/gimprectangle.h>
35 #include <libgimpbase/gimpunit.h>
36 #include <libgimpbase/gimputils.h>
37 #include <libgimpbase/gimpversion.h>
38 #include <libgimpbase/gimpvaluearray.h>
39 
40 #ifndef G_OS_WIN32
41 #include <libgimpbase/gimpsignal.h>
42 #endif
43 
44 #undef __GIMP_BASE_H_INSIDE__
45 
46 #endif  /* __GIMP_BASE_H__ */
47