2003-12-05 07:55:15 -08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2001-05-21 17:36:38 -07:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
2001-05-20 17:05:48 -07:00
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
2001-05-20 17:05:48 -07:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-17 14:28:01 -08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
2003-12-05 07:55:15 -08: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-20 17:05:48 -07:00
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-17 14:28:01 -08:00
|
|
|
* License along with this library. If not, see
|
2018-07-11 14:27:07 -07:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
2001-05-20 17:05:48 -07:00
|
|
|
*/
|
|
|
|
|
|
2025-08-13 15:31:46 -07:00
|
|
|
#ifndef __GIMP_BASE_H__
|
|
|
|
|
#define __GIMP_BASE_H__
|
2001-05-20 17:05:48 -07:00
|
|
|
|
2011-04-28 05:30:41 -07:00
|
|
|
#define __GIMP_BASE_H_INSIDE__
|
2001-05-20 17:05:48 -07:00
|
|
|
|
2023-11-20 12:38:11 -08:00
|
|
|
#include <gegl.h>
|
|
|
|
|
|
2001-05-20 17:05:48 -07:00
|
|
|
#include <libgimpbase/gimpbasetypes.h>
|
|
|
|
|
|
2004-09-02 17:06:21 -07:00
|
|
|
#include <libgimpbase/gimpchecks.h>
|
2023-08-02 14:55:33 -07:00
|
|
|
#include <libgimpbase/gimpchoice.h>
|
2006-06-02 02:58:03 -07:00
|
|
|
#include <libgimpbase/gimpcpuaccel.h>
|
2001-05-20 17:05:48 -07:00
|
|
|
#include <libgimpbase/gimpenv.h>
|
2024-05-06 11:38:12 -07:00
|
|
|
#include <libgimpbase/gimpexportoptions.h>
|
2001-05-20 17:05:48 -07:00
|
|
|
#include <libgimpbase/gimplimits.h>
|
2004-07-27 09:39:00 -07:00
|
|
|
#include <libgimpbase/gimpmemsize.h>
|
2013-10-19 09:38:01 -07:00
|
|
|
#include <libgimpbase/gimpmetadata.h>
|
2019-07-26 06:54:33 -07:00
|
|
|
#include <libgimpbase/gimpparamspecs.h>
|
2001-05-20 17:05:48 -07:00
|
|
|
#include <libgimpbase/gimpparasite.h>
|
2006-08-29 07:46:32 -07:00
|
|
|
#include <libgimpbase/gimprectangle.h>
|
2001-05-20 17:05:48 -07:00
|
|
|
#include <libgimpbase/gimpunit.h>
|
2003-02-05 14:15:39 -08:00
|
|
|
#include <libgimpbase/gimputils.h>
|
2001-05-21 17:36:38 -07:00
|
|
|
#include <libgimpbase/gimpversion.h>
|
2012-05-03 14:24:09 -07:00
|
|
|
#include <libgimpbase/gimpvaluearray.h>
|
2001-05-20 17:05:48 -07:00
|
|
|
|
2011-04-28 05:30:41 -07:00
|
|
|
#undef __GIMP_BASE_H_INSIDE__
|
2025-08-13 15:31:46 -07:00
|
|
|
|
|
|
|
|
#endif /* __GIMP_BASE_H__ */
|