[gegl/wip/pippin/pipeline: 85/95] privatly expose nodes private struct, to split some possible pipelines



commit 7fd11c2532980fa4a207e685c5dbb72141791d76
Author: Øyvind Kolås <pippin gimp org>
Date:   Wed Jul 25 14:37:43 2018 +0200

    privatly expose nodes private struct, to split some possible pipelines

 gegl/graph/gegl-node-private.h | 11 +++++++++++
 gegl/graph/gegl-node.c         | 10 ----------
 2 files changed, 11 insertions(+), 10 deletions(-)
---
diff --git a/gegl/graph/gegl-node-private.h b/gegl/graph/gegl-node-private.h
index 5b892940c..cf86d67a5 100644
--- a/gegl/graph/gegl-node-private.h
+++ b/gegl/graph/gegl-node-private.h
@@ -142,6 +142,17 @@ gegl_node_emit_computed (GeglNode *node,
                          const GeglRectangle *rect);
 
 
+struct _GeglNodePrivate
+{
+  GSList          *source_connections;
+  GSList          *sink_connections;
+  GSList          *children;  /*  used for children */
+  GeglNode        *parent;
+  gchar           *name;
+  gchar           *debug_name;
+  GeglEvalManager *eval_manager;
+};
+
 G_END_DECLS
 
 #endif /* __GEGL_NODE_PRIVATE_H__ */
diff --git a/gegl/graph/gegl-node.c b/gegl/graph/gegl-node.c
index 8c92ae365..37641efbf 100644
--- a/gegl/graph/gegl-node.c
+++ b/gegl/graph/gegl-node.c
@@ -67,16 +67,6 @@ enum
 };
 
 
-struct _GeglNodePrivate
-{
-  GSList          *source_connections;
-  GSList          *sink_connections;
-  GSList          *children;  /*  used for children */
-  GeglNode        *parent;
-  gchar           *name;
-  gchar           *debug_name;
-  GeglEvalManager *eval_manager;
-};
 
 
 static guint gegl_node_signals[LAST_SIGNAL] = {0};


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]