summaryrefslogtreecommitdiff
path: root/plugins/mm-modem-bandrich.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mm-modem-bandrich.h')
-rw-r--r--plugins/mm-modem-bandrich.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/plugins/mm-modem-bandrich.h b/plugins/mm-modem-bandrich.h
new file mode 100644
index 000000000..3e9ac662b
--- /dev/null
+++ b/plugins/mm-modem-bandrich.h
@@ -0,0 +1,46 @@
+/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details:
+ *
+ * Copyright (C) 2008 - 2009 Novell, Inc.
+ * Copyright (C) 2009 - 2012 Red Hat, Inc.
+ */
+
+#ifndef MM_MODEM_BANDRICH_H
+#define MM_MODEM_BANDRICH_H
+
+#include <glib-object.h>
+
+#include "mm-generic-gsm.h"
+
+#define MM_TYPE_MODEM_BANDRICH (mm_modem_bandrich_get_type ())
+#define MM_MODEM_BANDRICH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_MODEM_BANDRICH, MMModemBandrich))
+#define MM_MODEM_BANDRICH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MM_TYPE_MODEM_BANDRICH, MMModemBandrichClass))
+#define MM_IS_MODEM_BANDRICH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_MODEM_BANDRICH))
+#define MM_IS_MODEM_BANDRICH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MM_TYPE_MODEM_BANDRICH))
+#define MM_MODEM_BANDRICH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_MODEM_BANDRICH, MMModemBandrichClass))
+
+typedef struct {
+ MMGenericGsm parent;
+} MMModemBandrich;
+
+typedef struct {
+ MMGenericGsmClass parent;
+} MMModemBandrichClass;
+
+GType mm_modem_bandrich_get_type (void);
+
+MMModem *mm_modem_bandrich_new (const char *device,
+ const char *driver,
+ const char *plugin_name);
+
+#endif /* MM_MODEM_BANDRICH_H */
+