Blame gegl/gegl-types-internal.h

Packit Service 2781ba
/* This file is part of GEGL
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is free software; you can redistribute it and/or
Packit Service 2781ba
 * modify it under the terms of the GNU Lesser General Public
Packit Service 2781ba
 * License as published by the Free Software Foundation; either
Packit Service 2781ba
 * version 3 of the License, or (at your option) any later version.
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is distributed in the hope that it will be useful,
Packit Service 2781ba
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2781ba
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 2781ba
 * Lesser General Public License for more details.
Packit Service 2781ba
 *
Packit Service 2781ba
 * You should have received a copy of the GNU Lesser General Public
Packit Service 2781ba
 * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
Packit Service 2781ba
 *
Packit Service 2781ba
 * Copyright 2003 Calvin Williamson
Packit Service 2781ba
 *           2006 Øyvind Kolås
Packit Service 2781ba
 */
Packit Service 2781ba
Packit Service 2781ba
#ifndef __GEGL_TYPES_INTERNAL_H__
Packit Service 2781ba
#define __GEGL_TYPES_INTERNAL_H__
Packit Service 2781ba
Packit Service 2781ba
G_BEGIN_DECLS
Packit Service 2781ba
Packit Service 2781ba
typedef struct _GeglCRVisitor        GeglCRVisitor;
Packit Service 2781ba
typedef struct _GeglDebugRectVisitor GeglDebugRectVisitor;
Packit Service 2781ba
typedef struct _GeglEvalMgr          GeglEvalMgr;
Packit Service 2781ba
typedef struct _GeglEvalVisitor      GeglEvalVisitor;
Packit Service 2781ba
typedef struct _GeglFinishVisitor    GeglFinishVisitor;
Packit Service 2781ba
typedef struct _GeglGraph            GeglGraph;
Packit Service 2781ba
typedef struct _GeglHaveVisitor      GeglHaveVisitor;
Packit Service 2781ba
typedef struct _GeglNeedVisitor      GeglNeedVisitor;
Packit Service 2781ba
typedef struct _GeglDotVisitor       GeglDotVisitor;
Packit Service 2781ba
#ifndef __GEGL_PLUGIN_H__
Packit Service 2781ba
typedef struct _GeglPad              GeglPad;
Packit Service 2781ba
typedef struct _GeglOperation        GeglOperation;
Packit Service 2781ba
typedef struct _GeglOperationContext GeglOperationContext;
Packit Service 2781ba
typedef struct _GeglConnection       GeglConnection;
Packit Service 2781ba
#endif
Packit Service 2781ba
typedef struct _GeglPrepareVisitor   GeglPrepareVisitor;
Packit Service 2781ba
typedef struct _GeglLockVisitor      GeglLockVisitor;
Packit Service 2781ba
typedef struct _GeglUnlockVisitor    GeglUnlockVisitor;
Packit Service 2781ba
typedef struct _GeglVisitable        GeglVisitable; /* dummy typedef */
Packit Service 2781ba
typedef struct _GeglVisitor          GeglVisitor;
Packit Service 2781ba
Packit Service 2781ba
typedef struct _GeglPoint            GeglPoint;
Packit Service 2781ba
typedef struct _GeglDimension        GeglDimension;
Packit Service 2781ba
Packit Service 2781ba
struct _GeglPoint
Packit Service 2781ba
{
Packit Service 2781ba
  gint x;
Packit Service 2781ba
  gint y;
Packit Service 2781ba
};
Packit Service 2781ba
Packit Service 2781ba
struct _GeglDimension
Packit Service 2781ba
{
Packit Service 2781ba
  gint width;
Packit Service 2781ba
  gint height;
Packit Service 2781ba
};
Packit Service 2781ba
Packit Service 2781ba
Packit Service 2781ba
G_END_DECLS
Packit Service 2781ba
Packit Service 2781ba
#endif /* __GEGL_TYPES_INTERNAL_H__ */