2007-12-10 09:17:40 +00:00
|
|
|
/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
|
|
|
|
|
|
|
|
|
|
#ifndef NM_GSM_DEVICE_H
|
|
|
|
|
#define NM_GSM_DEVICE_H
|
|
|
|
|
|
2008-06-10 14:59:22 +00:00
|
|
|
#include "nm-serial-device.h"
|
2007-12-10 09:17:40 +00:00
|
|
|
|
|
|
|
|
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 {
|
2008-06-10 14:59:22 +00:00
|
|
|
NMSerialDevice parent;
|
2007-12-10 09:17:40 +00:00
|
|
|
} NMGsmDevice;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2008-06-10 14:59:22 +00:00
|
|
|
NMSerialDeviceClass parent;
|
2007-12-10 09:17:40 +00:00
|
|
|
} 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 */
|