diff options
| author | David Zeuthen <davidz@redhat.com> | 2010-07-07 15:57:37 -0400 |
|---|---|---|
| committer | David Zeuthen <davidz@redhat.com> | 2010-07-07 15:57:37 -0400 |
| commit | 2d2a321a4b5943d408cabe54e3da48360ae7e4ac (patch) | |
| tree | 5b86edde1713204d1dc73467f5ae1ba988f22fd0 /gio/gdbusauthobserver.h | |
| parent | 62a1ccf526e7b23ac39cdf7251eac5706eef3f57 (diff) | |
| download | glib-2d2a321a4b5943d408cabe54e3da48360ae7e4ac.tar.gz | |
GDBus: Hide class structures for classes we don't want to be subclassed
E.g. move these C structures out of public header files and into their
respective C files. Also nuke padding since this is no longer needed.
This leaves only GDBusProxy as an extendable type.
Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'gio/gdbusauthobserver.h')
| -rw-r--r-- | gio/gdbusauthobserver.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gio/gdbusauthobserver.h b/gio/gdbusauthobserver.h index 4ea3a98b6..1489aac81 100644 --- a/gio/gdbusauthobserver.h +++ b/gio/gdbusauthobserver.h @@ -41,33 +41,6 @@ G_BEGIN_DECLS typedef struct _GDBusAuthObserverClass GDBusAuthObserverClass; typedef struct _GDBusAuthObserverPrivate GDBusAuthObserverPrivate; - -/** - * GDBusAuthObserverClass: - * @authorize_authenticated_peer: Signal class handler for the #GDBusAuthObserver::authorize-authenticated-peer signal. - * - * Class structure for #GDBusAuthObserverClass. - * - * Since: 2.26 - */ -struct _GDBusAuthObserverClass -{ - /*< private >*/ - GObjectClass parent_class; - - /*< public >*/ - - /* Signals */ - gboolean (*authorize_authenticated_peer) (GDBusAuthObserver *observer, - GIOStream *stream, - GCredentials *credentials); - - - /*< private >*/ - /* Padding for future expansion */ - gpointer padding[32]; -}; - /** * GDBusAuthObserver: * |
