From 6e1f1ce1400bebb4c2e86244916c678b21ff1a2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Wed, 16 Jan 2008 22:39:25 +0000 Subject: [PATCH] removed. removed. synced from gegl. Now includes the installed * app/gegl/gegl/buffer/gegl-buffer-types.h: removed. * app/gegl/gegl/buffer/: removed. * app/gegl/gegl/gegl-operation.h: synced from gegl. Now includes the installed gegl-buffer.h which contains the public typedefs needed for implementing operations anyways. svn path=/trunk/; revision=24630 --- ChangeLog | 8 ++++ app/gegl/gegl/buffer/gegl-buffer-types.h | 54 ------------------------ app/gegl/gegl/gegl-operation.h | 2 +- 3 files changed, 9 insertions(+), 55 deletions(-) delete mode 100644 app/gegl/gegl/buffer/gegl-buffer-types.h diff --git a/ChangeLog b/ChangeLog index b9569e491d..58f8d790ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-01-16 Øyvind Kolås + + * app/gegl/gegl/buffer/gegl-buffer-types.h: removed. + * app/gegl/gegl/buffer/: removed. + * app/gegl/gegl/gegl-operation.h: synced from gegl. Now includes + the installed gegl-buffer.h which contains the public typedefs + needed for implementing operations anyways. + 2008-01-16 Sven Neumann * app/base/boundary.c: minor cleanup. diff --git a/app/gegl/gegl/buffer/gegl-buffer-types.h b/app/gegl/gegl/buffer/gegl-buffer-types.h deleted file mode 100644 index 628f2d3b58..0000000000 --- a/app/gegl/gegl/buffer/gegl-buffer-types.h +++ /dev/null @@ -1,54 +0,0 @@ -/* This file is part of GEGL. - * - * 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 3 of the License, or (at your option) any later version. - * - * 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 - * Lesser 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, see . - * - * Copyright 2006,2007 Øyvind Kolås - */ - -#ifndef __GEGL_BUFFER_TYPES_H__ -#define __GEGL_BUFFER_TYPES_H__ - -typedef struct _GeglSampler GeglSampler; - -typedef struct _GeglTile GeglTile; -typedef struct _GeglTileClass GeglTileClass; - -typedef struct _GeglProvider GeglProvider; -typedef struct _GeglProviderClass GeglProviderClass; - -typedef struct _GeglTileBackend GeglTileBackend; -typedef struct _GeglTileBackendClass GeglTileBackendClass; - -typedef struct _GeglHandler GeglHandler; -typedef struct _GeglHandlerClass GeglHandlerClass; - -typedef struct _GeglHandlers GeglHandlers; -typedef struct _GeglHandlersClass GeglHandlersClass; - -typedef struct _GeglStorage GeglStorage; -typedef struct _GeglStorageClass GeglStorageClass; - -#ifndef __GEGL_BUFFER_H__ -typedef struct _GeglBuffer GeglBuffer; -#endif -typedef struct _GeglBufferClass GeglBufferClass; - -typedef struct _GeglCache GeglCache; -typedef struct _GeglCacheClass GeglCacheClass; - -typedef struct _GeglBufferAllocator GeglBufferAllocator; -typedef struct _GeglBufferAllocatorClass GeglBufferAllocatorClass; -typedef struct _GeglRegion GeglRegion; - -#endif diff --git a/app/gegl/gegl/gegl-operation.h b/app/gegl/gegl/gegl-operation.h index a594faf271..a16fce67b7 100644 --- a/app/gegl/gegl/gegl-operation.h +++ b/app/gegl/gegl/gegl-operation.h @@ -23,7 +23,7 @@ #include #include #include "gegl-types.h" -#include "buffer/gegl-buffer-types.h" +#include "buffer/gegl-buffer.h" G_BEGIN_DECLS