/usr/include/evolution-data-server-3.2/libedata-cal/e-cal-backend-factory.h is in libedata-cal1.2-dev 3.2.3-0ubuntu7.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-cal-backend-factory.h
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
* Author: Chris Toshok <toshok@ximian.com>
*/
#ifndef _E_CAL_BACKEND_FACTORY_H_
#define _E_CAL_BACKEND_FACTORY_H_
#include "e-cal-backend.h"
G_BEGIN_DECLS
#define E_TYPE_CAL_BACKEND_FACTORY (e_cal_backend_factory_get_type ())
#define E_CAL_BACKEND_FACTORY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_CAL_BACKEND_FACTORY, ECalBackendFactory))
#define E_CAL_BACKEND_FACTORY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_TYPE_CAL_BACKEND_FACTORY, ECalBackendFactoryClass))
#define E_IS_CAL_BACKEND_FACTORY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_CAL_BACKEND_FACTORY))
#define E_IS_CAL_BACKEND_FACTORY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_CAL_BACKEND_FACTORY))
#define E_CAL_BACKEND_FACTORY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), E_TYPE_CAL_BACKEND_FACTORY, ECalBackendFactoryClass))
typedef struct _ECalBackendFactoryPrivate ECalBackendFactoryPrivate;
typedef struct {
GObject parent_object;
} ECalBackendFactory;
typedef struct {
GObjectClass parent_class;
icalcomponent_kind (*get_kind) (ECalBackendFactory *factory);
const gchar * (*get_protocol) (ECalBackendFactory *factory);
ECalBackend * (*new_backend) (ECalBackendFactory *factory, ESource *source);
} ECalBackendFactoryClass;
GType e_cal_backend_factory_get_type (void);
icalcomponent_kind e_cal_backend_factory_get_kind (ECalBackendFactory *factory);
const gchar * e_cal_backend_factory_get_protocol (ECalBackendFactory *factory);
ECalBackend * e_cal_backend_factory_new_backend (ECalBackendFactory *factory, ESource *source);
G_END_DECLS
#endif /* _E_CAL_BACKEND_FACTORY_H_ */
|