Fixes FwNULL 3/16
[modest] / src / modest-tny-outbox-account.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <modest-tny-outbox-account.h>
31
32 G_DEFINE_TYPE (ModestTnyOutboxAccount, modest_tny_outbox_account, TNY_TYPE_CAMEL_STORE_ACCOUNT);
33
34 #define TNY_OUTBOX_ACCOUNT_PRIVATE(o) \
35   (G_TYPE_INSTANCE_GET_PRIVATE ((o), MODEST_TYPE_TNY_OUTBOX_ACCOUNT, ModestTnyOutboxAccountPrivate))
36
37 typedef struct _ModestTnyOutboxAccountPrivate ModestTnyOutboxAccountPrivate;
38
39 struct _ModestTnyOutboxAccountPrivate
40 {
41         /* This it the outbox account for this store account: */
42         gchar *parent_account_id;
43 };
44
45 static void
46 modest_tny_outbox_account_dispose (GObject *object)
47 {
48   if (G_OBJECT_CLASS (modest_tny_outbox_account_parent_class)->dispose)
49     G_OBJECT_CLASS (modest_tny_outbox_account_parent_class)->dispose (object);
50 }
51
52 static void
53 modest_tny_outbox_account_finalize (GObject *object)
54 {
55   G_OBJECT_CLASS (modest_tny_outbox_account_parent_class)->finalize (object);
56 }
57
58 static void
59 modest_tny_outbox_account_class_init (ModestTnyOutboxAccountClass *klass)
60 {
61   GObjectClass *object_class = G_OBJECT_CLASS (klass);
62
63   g_type_class_add_private (klass, sizeof (ModestTnyOutboxAccountPrivate));
64
65   object_class->dispose = modest_tny_outbox_account_dispose;
66   object_class->finalize = modest_tny_outbox_account_finalize;
67 }
68
69 static void
70 modest_tny_outbox_account_init (ModestTnyOutboxAccount *self)
71 {
72 }
73
74 ModestTnyOutboxAccount*
75 modest_tny_outbox_account_new (void)
76 {
77   return g_object_new (MODEST_TYPE_TNY_OUTBOX_ACCOUNT, NULL);
78 }