aboutsummaryrefslogtreecommitdiffstats
path: root/modules/composer-autosave/e-composer-autosave.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-11-26 01:40:32 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-11-26 04:38:30 +0800
commit2a69370d81d5adf74450ef19b36d9e7e400ff4d5 (patch)
treef613e6aca1f870b9a72de4d444427b17f1b20d90 /modules/composer-autosave/e-composer-autosave.h
parentc1acd36b2556869c6282f8e4297d53dcf775480e (diff)
downloadgsoc2013-evolution-2a69370d81d5adf74450ef19b36d9e7e400ff4d5.tar
gsoc2013-evolution-2a69370d81d5adf74450ef19b36d9e7e400ff4d5.tar.gz
gsoc2013-evolution-2a69370d81d5adf74450ef19b36d9e7e400ff4d5.tar.bz2
gsoc2013-evolution-2a69370d81d5adf74450ef19b36d9e7e400ff4d5.tar.lz
gsoc2013-evolution-2a69370d81d5adf74450ef19b36d9e7e400ff4d5.tar.xz
gsoc2013-evolution-2a69370d81d5adf74450ef19b36d9e7e400ff4d5.tar.zst
gsoc2013-evolution-2a69370d81d5adf74450ef19b36d9e7e400ff4d5.zip
composer-autosave: Miscellaneous cleanups.
Diffstat (limited to 'modules/composer-autosave/e-composer-autosave.h')
-rw-r--r--modules/composer-autosave/e-composer-autosave.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/modules/composer-autosave/e-composer-autosave.h b/modules/composer-autosave/e-composer-autosave.h
new file mode 100644
index 0000000000..2c5d7e79d4
--- /dev/null
+++ b/modules/composer-autosave/e-composer-autosave.h
@@ -0,0 +1,63 @@
+/*
+ * e-composer-autosave.h
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) version 3.
+ *
+ * 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with the program; if not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+#ifndef E_COMPOSER_AUTOSAVE_H
+#define E_COMPOSER_AUTOSAVE_H
+
+#include <libebackend/libebackend.h>
+
+/* Standard GObject macros */
+#define E_TYPE_COMPOSER_AUTOSAVE \
+ (e_composer_autosave_get_type ())
+#define E_COMPOSER_AUTOSAVE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST \
+ ((obj), E_TYPE_COMPOSER_AUTOSAVE, EComposerAutosave))
+#define E_COMPOSER_AUTOSAVE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_CAST \
+ ((cls), E_TYPE_COMPOSER_AUTOSAVE, EComposerAutosaveClass))
+#define E_IS_COMPOSER_AUTOSAVE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE \
+ ((obj), E_TYPE_COMPOSER_AUTOSAVE))
+#define E_IS_COMPOSER_AUTOSAVE_CLASS(cls) \
+ (G_TYPE_CHECK_CLASS_TYPE \
+ ((cls), E_TYPE_COMPOSER_AUTOSAVE))
+#define E_COMPOSER_AUTOSAVE_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS \
+ ((obj), E_TYPE_COMPOSER_AUTOSAVE, EComposerAutosaveClass))
+
+G_BEGIN_DECLS
+
+typedef struct _EComposerAutosave EComposerAutosave;
+typedef struct _EComposerAutosaveClass EComposerAutosaveClass;
+typedef struct _EComposerAutosavePrivate EComposerAutosavePrivate;
+
+struct _EComposerAutosave {
+ EExtension parent;
+ EComposerAutosavePrivate *priv;
+};
+
+struct _EComposerAutosaveClass {
+ EExtensionClass parent_class;
+};
+
+GType e_composer_autosave_get_type (void) G_GNUC_CONST;
+void e_composer_autosave_type_register
+ (GTypeModule *type_module);
+
+#endif /* E_COMPOSER_AUTOSAVE_H */
+