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
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_BASE_H__
|
|
|
|
#define __GIMP_BASE_H__
|
|
|
|
|
|
|
|
|
|
|
|
#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>
|
2002-10-23 22:55:07 +08:00
|
|
|
#include <libgimpbase/gimpdatafiles.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>
|
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>
|
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
|
|
|
|
|
2001-05-21 08:05:48 +08:00
|
|
|
|
|
|
|
#endif /* __GIMP_BASE_H__ */
|