diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-10-03 16:46:31 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-10-04 10:17:12 +0200 |
commit | 54c2ee77b018d19098805cd1b7be63a6f4b85ce8 (patch) | |
tree | 3f6b82c26eceda8feba90c2cb4e8ae1f99e0c4b9 /libmm-glib/mm-firmware-properties.c | |
parent | dc4656cead106a4f52a2e53ac329d8606d79c23c (diff) |
libmm-glib,firmware-properties: improve documentation
Diffstat (limited to 'libmm-glib/mm-firmware-properties.c')
-rw-r--r-- | libmm-glib/mm-firmware-properties.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libmm-glib/mm-firmware-properties.c b/libmm-glib/mm-firmware-properties.c index 8ef8347b..44097e4a 100644 --- a/libmm-glib/mm-firmware-properties.c +++ b/libmm-glib/mm-firmware-properties.c @@ -19,6 +19,18 @@ #include "mm-common-helpers.h" #include "mm-firmware-properties.h" +/** + * SECTION: mm-firmware-properties + * @title: MMFirmwareProperties + * @short_description: Helper object to handle firmware information. + * + * The #MMFirmwareProperties is an object handling the properties exposed for + * available firmware images. + * + * This object is retrieved with either mm_modem_firmware_list() + * or mm_modem_firmware_list_sync(). + */ + G_DEFINE_TYPE (MMFirmwareProperties, mm_firmware_properties, G_TYPE_OBJECT); #define PROPERTY_NAME "name" @@ -52,6 +64,8 @@ mm_firmware_properties_get_name (MMFirmwareProperties *self) return self->priv->name; } +/*****************************************************************************/ + /** * mm_firmware_properties_get_version: * @self: A #MMFirmwareProperties. @@ -68,6 +82,8 @@ mm_firmware_properties_get_version (MMFirmwareProperties *self) return self->priv->version; } +/*****************************************************************************/ + /** * mm_firmware_properties_get_image_type: * @self: A #MMFirmwareProperties. |