]> git.0d.be Git - empathy.git/blob - src/empathy-account-assistant.h
Skeleton of EmpathyAccountAssistant
[empathy.git] / src / empathy-account-assistant.h
1 /*
2  * Copyright (C) 2009 Collabora Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
19  */
20
21 /* empathy-account-assistant.h */
22
23 #ifndef __EMPATHY_ACCOUNT_ASSISTANT_H__
24 #define __EMPATHY_ACCOUNT_ASSISTANT_H__
25
26 #include <glib-object.h>
27
28 G_BEGIN_DECLS
29
30 #define EMPATHY_TYPE_ACCOUNT_ASSISTANT empathy_account_assistant_get_type()
31 #define EMPATHY_ACCOUNT_ASSISTANT(obj) \
32   (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_ACCOUNT_ASSISTANT, EmpathyAccountAssistant))
33 #define EMPATHY_ACCOUNT_ASSISTANT_CLASS(klass) \
34   (G_TYPE_CHECK_CLASS_CAST ((klass), EMPATHY_TYPE_ACCOUNT_ASSISTANT, EmpathyAccountAssistantClass))
35 #define EMPATHY_IS_ACCOUNT_ASSISTANT(obj) \
36   (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_ACCOUNT_ASSISTANT))
37 #define EMPATHY_IS_ACCOUNT_ASSISTANT_CLASS(klass) \
38   (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_ACCOUNT_ASSISTANT))
39 #define EMPATHY_ACCOUNT_ASSISTANT_GET_CLASS(obj) \
40   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_ACCOUNT_ASSISTANT, EmpathyAccountAssistantClass))
41
42 typedef struct {
43   GtkAssistant parent;
44
45   /* private */
46   gpointer priv;
47 } EmpathyAccountAssistant;
48
49 typedef struct {
50   GtkAssistantClass parent_class;
51 } EmpathyAccountAssistantClass;
52
53 GType empathy_account_assistant_get_type (void);
54
55 EmpathyAccountAssistant* empathy_account_assistant_new (void);
56
57 G_END_DECLS
58
59 #endif /* __EMPATHY_ACCOUNT_ASSISTANT_H__ */