docs/plugins/gst-plugins-bad-plugins.hierarchy: Update hierarchy.

Original commit message from CVS:
* docs/plugins/gst-plugins-bad-plugins.hierarchy:
Update hierarchy.
* ext/gio/gstgiosink.h:
* ext/gio/gstgiosrc.h:
Mark private fields of the instance structs private.
This commit is contained in:
Sebastian Dröge 2007-09-21 18:00:24 +00:00
parent 2abc59f9f8
commit d66e42c7c0
2 changed files with 13 additions and 1 deletions

View file

@ -42,10 +42,16 @@ G_BEGIN_DECLS
typedef struct _GstGioSink GstGioSink;
typedef struct _GstGioSinkClass GstGioSinkClass;
/**
* GstGioSink:
*
* Opaque data structure.
*/
struct _GstGioSink
{
GstBaseSink sink;
/*< private >*/
GCancellable *cancel;
GFile *file;
gchar *location;

View file

@ -42,10 +42,16 @@ G_BEGIN_DECLS
typedef struct _GstGioSrc GstGioSrc;
typedef struct _GstGioSrcClass GstGioSrcClass;
/**
* GstGioSrc:
*
* Opaque data structure.
*/
struct _GstGioSrc
{
GstBaseSrc src;
/*< private >*/
GCancellable *cancel;
GFile *file;
gchar *location;