summaryrefslogtreecommitdiff
path: root/libnm-core/nm-setting-cdma.h
diff options
context:
space:
mode:
authorAntonio Cardace <acardace@redhat.com>2020-09-28 16:03:33 +0200
committerAntonio Cardace <acardace@redhat.com>2020-09-28 16:07:51 +0200
commit328fb90f3e0d4e35975aff63944ac0412d7893a5 (patch)
tree50a52b51e7740057e04b1c10af7095a63f01eed4 /libnm-core/nm-setting-cdma.h
parentb4d8e69cd4838db8f563af8955d31de63e65f93f (diff)
downloadNetworkManager-328fb90f3e0d4e35975aff63944ac0412d7893a5.tar.gz
all: reformat all with new clang-format style
Run: ./contrib/scripts/nm-code-format.sh -i ./contrib/scripts/nm-code-format.sh -i Yes, it needs to run twice because the first run doesn't yet produce the final result. Signed-off-by: Antonio Cardace <acardace@redhat.com>
Diffstat (limited to 'libnm-core/nm-setting-cdma.h')
-rw-r--r--libnm-core/nm-setting-cdma.h41
1 files changed, 22 insertions, 19 deletions
diff --git a/libnm-core/nm-setting-cdma.h b/libnm-core/nm-setting-cdma.h
index fcc5976603..a95a37172f 100644
--- a/libnm-core/nm-setting-cdma.h
+++ b/libnm-core/nm-setting-cdma.h
@@ -7,20 +7,23 @@
#ifndef __NM_SETTING_CDMA_H__
#define __NM_SETTING_CDMA_H__
-#if !defined (__NETWORKMANAGER_H_INSIDE__) && !defined (NETWORKMANAGER_COMPILATION)
-#error "Only <NetworkManager.h> can be included directly."
+#if !defined(__NETWORKMANAGER_H_INSIDE__) && !defined(NETWORKMANAGER_COMPILATION)
+ #error "Only <NetworkManager.h> can be included directly."
#endif
#include "nm-setting.h"
G_BEGIN_DECLS
-#define NM_TYPE_SETTING_CDMA (nm_setting_cdma_get_type ())
-#define NM_SETTING_CDMA(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTING_CDMA, NMSettingCdma))
-#define NM_SETTING_CDMA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_SETTING_CDMA, NMSettingCdmaClass))
-#define NM_IS_SETTING_CDMA(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTING_CDMA))
-#define NM_IS_SETTING_CDMA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_SETTING_CDMA))
-#define NM_SETTING_CDMA_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_SETTING_CDMA, NMSettingCdmaClass))
+#define NM_TYPE_SETTING_CDMA (nm_setting_cdma_get_type())
+#define NM_SETTING_CDMA(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), NM_TYPE_SETTING_CDMA, NMSettingCdma))
+#define NM_SETTING_CDMA_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), NM_TYPE_SETTING_CDMA, NMSettingCdmaClass))
+#define NM_IS_SETTING_CDMA(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NM_TYPE_SETTING_CDMA))
+#define NM_IS_SETTING_CDMA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), NM_TYPE_SETTING_CDMA))
+#define NM_SETTING_CDMA_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS((obj), NM_TYPE_SETTING_CDMA, NMSettingCdmaClass))
#define NM_SETTING_CDMA_SETTING_NAME "cdma"
@@ -36,26 +39,26 @@ G_BEGIN_DECLS
* CDMA-based Mobile Broadband Settings
*/
struct _NMSettingCdma {
- NMSetting parent;
+ NMSetting parent;
};
typedef struct {
- NMSettingClass parent;
+ NMSettingClass parent;
- /*< private >*/
- gpointer padding[4];
+ /*< private >*/
+ gpointer padding[4];
} NMSettingCdmaClass;
-GType nm_setting_cdma_get_type (void);
+GType nm_setting_cdma_get_type(void);
-NMSetting *nm_setting_cdma_new (void);
-const char *nm_setting_cdma_get_number (NMSettingCdma *setting);
-const char *nm_setting_cdma_get_username (NMSettingCdma *setting);
-const char *nm_setting_cdma_get_password (NMSettingCdma *setting);
-NMSettingSecretFlags nm_setting_cdma_get_password_flags (NMSettingCdma *setting);
+NMSetting * nm_setting_cdma_new(void);
+const char * nm_setting_cdma_get_number(NMSettingCdma *setting);
+const char * nm_setting_cdma_get_username(NMSettingCdma *setting);
+const char * nm_setting_cdma_get_password(NMSettingCdma *setting);
+NMSettingSecretFlags nm_setting_cdma_get_password_flags(NMSettingCdma *setting);
NM_AVAILABLE_IN_1_8
-guint32 nm_setting_cdma_get_mtu (NMSettingCdma *setting);
+guint32 nm_setting_cdma_get_mtu(NMSettingCdma *setting);
G_END_DECLS