GESTimeline: start more documentation
authorEdward Hervey <edward.hervey@collabora.co.uk>
Mon, 14 Sep 2009 15:00:13 +0000 (17:00 +0200)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Mon, 14 Sep 2009 17:47:56 +0000 (19:47 +0200)
ges/ges-timeline.h

index 425c85cfe60e98ce88d27621a1add64f5b01ba6f..f2d4614c0433ef2670c079ec76cce3da342fb5cd 100644 (file)
@@ -43,11 +43,17 @@ G_BEGIN_DECLS
 #define GES_TIMELINE_GET_CLASS(obj) \
   (G_TYPE_INSTANCE_GET_CLASS ((obj), GES_TYPE_TIMELINE, GESTimelineClass))
 
+/**
+ * GESTimeline:
+ * @tracks: a list of #GESTrack
+ */
 struct _GESTimeline {
   GstBin parent;
 
-  GList *layers;       /* TimelineLayer(s) ordered by priority */
-  GList *tracks;       /* TimelineTrack(s) */
+  /*< private >*/
+  GList *layers; /* A list of GESTimelineLayer sorted by priority */
+  /*< public >*/
+  GList *tracks;
 };
 
 struct _GESTimelineClass {