Blame src/addressbook/e-book-backend-ews.h

Packit 700f92
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
Packit 700f92
Packit 700f92
/* e-book-backend-ews.h - Ews contact backend.
Packit 700f92
 *
Packit 700f92
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
Packit 700f92
 *
Packit 700f92
 * This program is free software; you can redistribute it and/or
Packit 700f92
 * modify it under the terms of version 2 of the GNU Lesser General Public
Packit 700f92
 * License as published by the Free Software Foundation.
Packit 700f92
 *
Packit 700f92
 * This program is distributed in the hope that it will be useful,
Packit 700f92
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 700f92
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 700f92
 * General Public License for more details.
Packit 700f92
 *
Packit 700f92
 * You should have received a copy of the GNU Lesser General Public
Packit 700f92
 * License along with this program; if not, write to the
Packit 700f92
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Packit 700f92
 * Boston, MA 02110-1301, USA.
Packit 700f92
 *
Packit 700f92
 */
Packit 700f92
Packit 700f92
#ifndef E_BOOK_BACKEND_EWS_H
Packit 700f92
#define E_BOOK_BACKEND_EWS_H
Packit 700f92
Packit 700f92
#include <libedata-book/libedata-book.h>
Packit 700f92
Packit 700f92
#define E_TYPE_BOOK_BACKEND_EWS        (e_book_backend_ews_get_type ())
Packit 700f92
#define E_BOOK_BACKEND_EWS(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_BOOK_BACKEND_EWS, EBookBackendEws))
Packit 700f92
#define E_BOOK_BACKEND_EWS_CLASS(k)    (G_TYPE_CHECK_CLASS_CAST((k), E_TYPE_BOOK_BACKEND_EWS, EBookBackendEwsClass))
Packit 700f92
#define E_IS_BOOK_BACKEND_EWS(o)       (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_BOOK_BACKEND_EWS))
Packit 700f92
#define E_IS_BOOK_BACKEND_EWS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_BOOK_BACKEND_EWS))
Packit 700f92
#define E_BOOK_BACKEND_EWS_GET_CLASS(k) (G_TYPE_INSTANCE_GET_CLASS ((obj), E_TYPE_BOOK_BACKEND_EWS, EBookBackenEwsClass))
Packit 700f92
Packit 700f92
typedef struct _EBookBackendEwsPrivate EBookBackendEwsPrivate;
Packit 700f92
Packit 700f92
typedef struct {
Packit 700f92
	EBookMetaBackend parent_object;
Packit 700f92
	EBookBackendEwsPrivate *priv;
Packit 700f92
} EBookBackendEws;
Packit 700f92
Packit 700f92
typedef struct {
Packit 700f92
	EBookMetaBackendClass parent_class;
Packit 700f92
} EBookBackendEwsClass;
Packit 700f92
Packit 700f92
GType       e_book_backend_ews_get_type (void);
Packit 700f92
Packit 700f92
#endif /* E_BOOK_BACKEND_EWS_H */