Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / addressbook / backends / vcf / e-book-backend-vcf.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
3 /* e-book-backend-vcf.h - VCF contact backend.
4  *
5  * Copyright (C) 2005 Novell, Inc.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of version 2 of the GNU Lesser General Public
9  * License as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  * Authors: Chris Toshok <toshok@ximian.com>
22  */
23
24 #ifndef __E_BOOK_BACKEND_VCF_H__
25 #define __E_BOOK_BACKEND_VCF_H__
26
27 #include <libedata-book/e-book-backend-sync.h>
28
29 #define E_TYPE_BOOK_BACKEND_VCF         (e_book_backend_vcf_get_type ())
30 #define E_BOOK_BACKEND_VCF(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_BOOK_BACKEND_VCF, EBookBackendVCF))
31 #define E_BOOK_BACKEND_VCF_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), E_TYPE_BOOK_BACKEND_VCF, EBookBackendVCFClass))
32 #define E_IS_BOOK_BACKEND_VCF(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_BOOK_BACKEND_VCF))
33 #define E_IS_BOOK_BACKEND_VCF_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_BOOK_BACKEND_VCF))
34 #define E_BOOK_BACKEND_VCF_GET_CLASS(k) (G_TYPE_INSTANCE_GET_CLASS ((obj), E_TYPE_BOOK_BACKEND_VCF, EBookBackendVCFClass))
35
36 typedef struct _EBookBackendVCFPrivate EBookBackendVCFPrivate;
37
38 typedef struct {
39         EBookBackendSync         parent_object;
40         EBookBackendVCFPrivate *priv;
41 } EBookBackendVCF;
42
43 typedef struct {
44         EBookBackendSyncClass parent_class;
45 } EBookBackendVCFClass;
46
47 EBookBackend *e_book_backend_vcf_new      (void);
48 GType       e_book_backend_vcf_get_type (void);
49
50 #endif /* ! __E_BOOK_BACKEND_VCF_H__ */
51