diff options
Diffstat (limited to 'src/ppp-manager/nm-ppp-manager.h')
| -rw-r--r-- | src/ppp-manager/nm-ppp-manager.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ppp-manager/nm-ppp-manager.h b/src/ppp-manager/nm-ppp-manager.h index f8cbda13..188be84e 100644 --- a/src/ppp-manager/nm-ppp-manager.h +++ b/src/ppp-manager/nm-ppp-manager.h @@ -22,10 +22,8 @@ #ifndef __NETWORKMANAGER_PPP_MANAGER_H__ #define __NETWORKMANAGER_PPP_MANAGER_H__ -#include <glib.h> -#include <glib-object.h> -#include <gio/gio.h> +#include "nm-exported-object.h" #include "nm-ppp-status.h" #include "nm-activation-request.h" #include "nm-connection.h" @@ -43,12 +41,15 @@ #define NM_PPP_MANAGER_PARENT_IFACE "parent-iface" +/* signals */ +#define NM_PPP_MANAGER_STATE_CHANGED "state-changed" + typedef struct { - GObject parent; + NMExportedObject parent; } NMPPPManager; typedef struct { - GObjectClass parent; + NMExportedObjectClass parent; /* Signals */ void (*state_changed) (NMPPPManager *manager, NMPPPStatus status); |