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