]> git.sur5r.net Git - glabels/blob - src/merge-vcard.h
Imported Upstream version 2.2.8
[glabels] / src / merge-vcard.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
2
3 /*
4  *  (GLABELS) Label and Business Card Creation program for GNOME
5  *
6  *  merge_vcard.h:  vcard merge backend module header file
7  *
8  *  Copyright (C) 2002  Jim Evins <evins@snaught.com>.
9  *  and
10  *  Copyright (C) 2005  Austin Henry <ahenry@users.sourceforge.net>
11  *
12  *  This program is free software; you can redistribute it and/or modify
13  *  it under the terms of the GNU General Public License as published by
14  *  the Free Software Foundation; either version 2 of the License, or
15  *  (at your option) any later version.
16  *
17  *  This program is distributed in the hope that it will be useful,
18  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *  GNU General Public License for more details.
21  *
22  *  You should have received a copy of the GNU General Public License
23  *  along with this program; if not, write to the Free Software
24  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
25  */
26 #ifndef __MERGE_VCARD_H__
27 #define __MERGE_VCARD_H__
28
29 #include "merge.h"
30
31 G_BEGIN_DECLS
32
33 /* The following object arguments are available:
34  *
35  * name               type             description
36  * ---------------------------------------------------------------------------
37  *
38  */
39
40 #define GL_TYPE_MERGE_VCARD              (gl_merge_vcard_get_type ())
41 #define GL_MERGE_VCARD(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GL_TYPE_MERGE_VCARD, glMergeVCard))
42 #define GL_MERGE_VCARD_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GL_TYPE_MERGE_VCARD, glMergeVCardClass))
43 #define GL_IS_MERGE_VCARD(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GL_TYPE_MERGE_VCARD))
44 #define GL_IS_MERGE_VCARD_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GL_TYPE_MERGE_VCARD))
45 #define GL_MERGE_VCARD_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), GL_TYPE_MERGE_VCARD, glMergeVCardClass))
46
47
48 typedef struct _glMergeVCard          glMergeVCard;
49 typedef struct _glMergeVCardClass     glMergeVCardClass;
50
51 typedef struct _glMergeVCardPrivate   glMergeVCardPrivate;
52
53
54 struct _glMergeVCard {
55         glMerge              object;
56
57         glMergeVCardPrivate *priv;
58 };
59
60 struct _glMergeVCardClass {
61         glMergeClass         parent_class;
62 };
63
64
65 GType             gl_merge_vcard_get_type            (void) G_GNUC_CONST;
66
67 G_END_DECLS
68
69
70 #endif /* __MERGE_VCARD_H__ */