summaryrefslogtreecommitdiff
path: root/libmm-glib/mm-object.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmm-glib/mm-object.h')
-rw-r--r--libmm-glib/mm-object.h54
1 files changed, 32 insertions, 22 deletions
diff --git a/libmm-glib/mm-object.h b/libmm-glib/mm-object.h
index bef90b94..f19c5208 100644
--- a/libmm-glib/mm-object.h
+++ b/libmm-glib/mm-object.h
@@ -33,13 +33,16 @@
#include "mm-gdbus-modem.h"
#include "mm-modem.h"
#include "mm-modem-3gpp.h"
+#include "mm-modem-3gpp-profile-manager.h"
#include "mm-modem-3gpp-ussd.h"
#include "mm-modem-cdma.h"
#include "mm-modem-simple.h"
#include "mm-modem-location.h"
#include "mm-modem-messaging.h"
+#include "mm-modem-voice.h"
#include "mm-modem-time.h"
#include "mm-modem-firmware.h"
+#include "mm-modem-sar.h"
#include "mm-modem-signal.h"
#include "mm-modem-oma.h"
@@ -73,33 +76,40 @@ struct _MMObjectClass {
};
GType mm_object_get_type (void);
+G_DEFINE_AUTOPTR_CLEANUP_FUNC (MMObject, g_object_unref)
const gchar *mm_object_get_path (MMObject *self);
gchar *mm_object_dup_path (MMObject *self);
-MMModem *mm_object_get_modem (MMObject *self);
-MMModem3gpp *mm_object_get_modem_3gpp (MMObject *self);
-MMModem3gppUssd *mm_object_get_modem_3gpp_ussd (MMObject *self);
-MMModemCdma *mm_object_get_modem_cdma (MMObject *self);
-MMModemSimple *mm_object_get_modem_simple (MMObject *self);
-MMModemLocation *mm_object_get_modem_location (MMObject *self);
-MMModemMessaging *mm_object_get_modem_messaging (MMObject *self);
-MMModemTime *mm_object_get_modem_time (MMObject *self);
-MMModemFirmware *mm_object_get_modem_firmware (MMObject *self);
-MMModemSignal *mm_object_get_modem_signal (MMObject *self);
-MMModemOma *mm_object_get_modem_oma (MMObject *self);
+MMModem *mm_object_get_modem (MMObject *self);
+MMModem3gpp *mm_object_get_modem_3gpp (MMObject *self);
+MMModem3gppProfileManager *mm_object_get_modem_3gpp_profile_manager (MMObject *self);
+MMModem3gppUssd *mm_object_get_modem_3gpp_ussd (MMObject *self);
+MMModemCdma *mm_object_get_modem_cdma (MMObject *self);
+MMModemSimple *mm_object_get_modem_simple (MMObject *self);
+MMModemLocation *mm_object_get_modem_location (MMObject *self);
+MMModemMessaging *mm_object_get_modem_messaging (MMObject *self);
+MMModemVoice *mm_object_get_modem_voice (MMObject *self);
+MMModemTime *mm_object_get_modem_time (MMObject *self);
+MMModemFirmware *mm_object_get_modem_firmware (MMObject *self);
+MMModemSar *mm_object_get_modem_sar (MMObject *self);
+MMModemSignal *mm_object_get_modem_signal (MMObject *self);
+MMModemOma *mm_object_get_modem_oma (MMObject *self);
-MMModem *mm_object_peek_modem (MMObject *self);
-MMModem3gpp *mm_object_peek_modem_3gpp (MMObject *self);
-MMModem3gppUssd *mm_object_peek_modem_3gpp_ussd (MMObject *self);
-MMModemCdma *mm_object_peek_modem_cdma (MMObject *self);
-MMModemSimple *mm_object_peek_modem_simple (MMObject *self);
-MMModemLocation *mm_object_peek_modem_location (MMObject *self);
-MMModemMessaging *mm_object_peek_modem_messaging (MMObject *self);
-MMModemTime *mm_object_peek_modem_time (MMObject *self);
-MMModemFirmware *mm_object_peek_modem_firmware (MMObject *self);
-MMModemSignal *mm_object_peek_modem_signal (MMObject *self);
-MMModemOma *mm_object_peek_modem_oma (MMObject *self);
+MMModem *mm_object_peek_modem (MMObject *self);
+MMModem3gpp *mm_object_peek_modem_3gpp (MMObject *self);
+MMModem3gppProfileManager *mm_object_peek_modem_3gpp_profile_manager (MMObject *self);
+MMModem3gppUssd *mm_object_peek_modem_3gpp_ussd (MMObject *self);
+MMModemCdma *mm_object_peek_modem_cdma (MMObject *self);
+MMModemSimple *mm_object_peek_modem_simple (MMObject *self);
+MMModemLocation *mm_object_peek_modem_location (MMObject *self);
+MMModemMessaging *mm_object_peek_modem_messaging (MMObject *self);
+MMModemVoice *mm_object_peek_modem_voice (MMObject *self);
+MMModemTime *mm_object_peek_modem_time (MMObject *self);
+MMModemFirmware *mm_object_peek_modem_firmware (MMObject *self);
+MMModemSar *mm_object_peek_modem_sar (MMObject *self);
+MMModemSignal *mm_object_peek_modem_signal (MMObject *self);
+MMModemOma *mm_object_peek_modem_oma (MMObject *self);
G_END_DECLS