Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / addressbook / backends / groupwise / e-book-backend-groupwise.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
3 /* e-book-backend-groupwise.h - Groupwise 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: Sivaiah Nallagatla <snallagatla@novell.com>
22  */
23                                                                                                                           
24 #ifndef __E_BOOK_BACKEND_GROUPWISE_H__
25 #define __E_BOOK_BACKEND_GROUPWISE_H__
26                                                                                                                              
27 #include <libedata-book/e-book-backend-sync.h>
28 #include "db.h"
29                                                                                                                              
30 #define E_TYPE_BOOK_BACKEND_GROUPWISE        (e_book_backend_groupwise_get_type ())
31 #define E_BOOK_BACKEND_GROUPWISE(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_BOOK_BACKEND_GROUPWISE, EBookBackendGroupwise))
32 #define E_BOOK_BACKEND_GROUPWISE_CLASS(k)    (G_TYPE_CHECK_CLASS_CAST((k), E_TYPE_BOOK_BACKEND_GROUPWISE, EBookBackendGroupwiseClass))
33 #define E_IS_BOOK_BACKEND_GROUPWISE(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_BOOK_BACKEND_GROUPWISE))
34 #define E_IS_BOOK_BACKEND_GROUPWISE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_BOOK_BACKEND_GROUPWISE))
35 #define E_BOOK_BACKEND_GROUPWISE_GET_CLASS(k) (G_TYPE_INSTANCE_GET_CLASS ((obj), E_TYPE_BOOK_BACKEND_GROUPWISE, EBookBackenGroupwiseClass))                                                                                                                             
36 typedef struct _EBookBackendGroupwisePrivate EBookBackendGroupwisePrivate;
37                                                                                                                              
38 typedef struct {
39         EBookBackend         parent_object;
40         EBookBackendGroupwisePrivate *priv;
41 } EBookBackendGroupwise;
42                                                                                                                              
43 typedef struct {
44         EBookBackendClass parent_class;
45 } EBookBackendGroupwiseClass;
46
47 EBookBackend *e_book_backend_groupwise_new      (void);
48 GType       e_book_backend_groupwise_get_type (void);
49                                                                                                                              
50 #endif /* ! __E_BOOK_BACKEND_GROUPWISE_H__ */
51                                                                                                                              
52
53