Documentation additions.

This commit is contained in:
Matthias Clasen
2003-10-20 20:07:45 +00:00
parent 04d27d2299
commit 4a29291187
7 changed files with 48 additions and 11 deletions

View File

@@ -1,3 +1,8 @@
Mon Oct 20 22:06:12 2003 Matthias Clasen <maclas@gmx.de>
* gobject.h (struct _GObjectClass): Add /*< public >*/
and /*< private >*/ markers for documentation purposes.
Sat Oct 18 01:24:14 2003 Matthias Clasen <maclas@gmx.de>
* gtypeplugin.h (struct _GTypePluginClass): Add /*< public >*/

View File

@@ -75,7 +75,8 @@ struct _GObjectClass
/*< private >*/
GSList *construct_properties;
/* public overridable methods */
/*< public >*/
/* overridable methods */
GObject* (*constructor) (GType type,
guint n_construct_properties,
GObjectConstructParam *construct_properties);
@@ -98,6 +99,7 @@ struct _GObjectClass
/* signals */
void (*notify) (GObject *object,
GParamSpec *pspec);
/*< private >*/
/* padding */
gpointer pdummy[8];
};