aboutsummaryrefslogtreecommitdiff
path: root/libmm-glib/mm-sms-properties.h
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-03-01 11:11:28 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-16 14:53:19 +0100
commitef9fb0bfacac348c5bab35a3a99d52270e510d99 (patch)
tree770ed4088a84a885b53412bd4b970371b7e2f394 /libmm-glib/mm-sms-properties.h
parent3ccc78e8588acec9632863d30e310cdc76ad8598 (diff)
libmm-common: `MMSmsProperties' won't be considered internal any more
Renamed `MMCommonSmsProperties' to `MMSmsProperties', and removed the `MMSmsProperties' provided in libmm-glib. We'll just use the original one from libmm-common always.
Diffstat (limited to 'libmm-glib/mm-sms-properties.h')
-rw-r--r--libmm-glib/mm-sms-properties.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/libmm-glib/mm-sms-properties.h b/libmm-glib/mm-sms-properties.h
deleted file mode 100644
index f37e499d..00000000
--- a/libmm-glib/mm-sms-properties.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* -*- 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) 2012 Google, Inc.
- */
-
-#ifndef MM_SMS_PROPERTIES_H
-#define MM_SMS_PROPERTIES_H
-
-#include <ModemManager.h>
-#include <glib-object.h>
-
-#include <libmm-common.h>
-
-G_BEGIN_DECLS
-
-typedef MMCommonSmsProperties MMSmsProperties;
-#define MM_TYPE_SMS_PROPERTIES(o) MM_TYPE_COMMON_SMS_PROPERTIES (o)
-#define MM_SMS_PROPERTIES(o) MM_COMMON_SMS_PROPERTIES(o)
-#define MM_IS_SMS_PROPERTIES(o) MM_IS_COMMON_SMS_PROPERTIES(o)
-
-MMSmsProperties *mm_sms_properties_new (void);
-MMSmsProperties *mm_sms_properties_new_from_string (
- const gchar *str,
- GError **error);
-
-void mm_sms_properties_set_text (
- MMSmsProperties *properties,
- const gchar *text);
-void mm_sms_properties_set_number (
- MMSmsProperties *properties,
- const gchar *number);
-void mm_sms_properties_set_smsc (
- MMSmsProperties *properties,
- const gchar *smsc);
-void mm_sms_properties_set_validity (
- MMSmsProperties *properties,
- guint validity);
-void mm_sms_properties_set_class (
- MMSmsProperties *properties,
- guint class);
-
-G_END_DECLS
-
-#endif /* MM_SMS_PROPERTIES_H */