2003-12-05 15:55:15 +00:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2001-05-22 00:36:38 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
2001-05-21 00:05:48 +00:00
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2001-05-21 00:05:48 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-17 22:28:01 +00:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-12-05 15:55:15 +00:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-05-21 00:05:48 +00:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-17 22:28:01 +00:00
|
|
|
* License along with this library. If not, see
|
2018-07-11 23:27:07 +02:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2001-05-21 00:05:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_BASE_H__
|
|
|
|
#define __GIMP_BASE_H__
|
|
|
|
|
2011-04-28 14:30:41 +02:00
|
|
|
#define __GIMP_BASE_H_INSIDE__
|
2001-05-21 00:05:48 +00:00
|
|
|
|
|
|
|
#include <libgimpbase/gimpbasetypes.h>
|
|
|
|
|
2004-09-03 00:06:21 +00:00
|
|
|
#include <libgimpbase/gimpchecks.h>
|
2006-06-02 09:58:03 +00:00
|
|
|
#include <libgimpbase/gimpcpuaccel.h>
|
2001-05-21 00:05:48 +00:00
|
|
|
#include <libgimpbase/gimpenv.h>
|
|
|
|
#include <libgimpbase/gimplimits.h>
|
2004-07-27 16:39:00 +00:00
|
|
|
#include <libgimpbase/gimpmemsize.h>
|
2013-10-19 18:38:01 +02:00
|
|
|
#include <libgimpbase/gimpmetadata.h>
|
2001-05-21 00:05:48 +00:00
|
|
|
#include <libgimpbase/gimpparasite.h>
|
2006-08-29 14:46:32 +00:00
|
|
|
#include <libgimpbase/gimprectangle.h>
|
2001-05-21 00:05:48 +00:00
|
|
|
#include <libgimpbase/gimpunit.h>
|
2003-02-05 22:15:39 +00:00
|
|
|
#include <libgimpbase/gimputils.h>
|
2001-05-22 00:36:38 +00:00
|
|
|
#include <libgimpbase/gimpversion.h>
|
2012-05-03 23:24:09 +02:00
|
|
|
#include <libgimpbase/gimpvaluearray.h>
|
2001-05-21 00:05:48 +00:00
|
|
|
|
2001-05-21 20:30:16 +00:00
|
|
|
#ifndef G_OS_WIN32
|
|
|
|
#include <libgimpbase/gimpsignal.h>
|
|
|
|
#endif
|
|
|
|
|
2011-04-28 14:30:41 +02:00
|
|
|
#undef __GIMP_BASE_H_INSIDE__
|
2001-05-21 00:05:48 +00:00
|
|
|
|
|
|
|
#endif /* __GIMP_BASE_H__ */
|