NetworkManager/libnm-glib/nm-gsm-device.h

33 lines
1 KiB
C
Raw Normal View History

/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
#ifndef NM_GSM_DEVICE_H
#define NM_GSM_DEVICE_H
#include "nm-serial-device.h"
G_BEGIN_DECLS
#define NM_TYPE_GSM_DEVICE (nm_gsm_device_get_type ())
#define NM_GSM_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_GSM_DEVICE, NMGsmDevice))
#define NM_GSM_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_GSM_DEVICE, NMGsmDeviceClass))
#define NM_IS_GSM_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_GSM_DEVICE))
#define NM_IS_GSM_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), NM_TYPE_GSM_DEVICE))
#define NM_GSM_DEVICE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_GSM_DEVICE, NMGsmDeviceClass))
typedef struct {
NMSerialDevice parent;
} NMGsmDevice;
typedef struct {
NMSerialDeviceClass parent;
} NMGsmDeviceClass;
GType nm_gsm_device_get_type (void);
NMGsmDevice *nm_gsm_device_new (DBusGConnection *connection,
const char *path);
G_END_DECLS
#endif /* NM_GSM_DEVICE_H */