~ubuntu-branches/ubuntu/utopic/evolution-data-server/utopic-proposed

« back to all changes in this revision

Viewing changes to calendar/libedata-cal/e-cal-backend-sexp.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-06-13 12:02:14 UTC
  • mfrom: (1.1.116) (1.2.35 sid)
  • Revision ID: package-import@ubuntu.com-20140613120214-1zx93d8jxwt093aw
Tags: 3.12.2-1ubuntu1
* Merge with Debian, remaining changes:
  - debian/control: build depend on hardening-wrapper
  - Add build-depends and pass configure flag to enable Ubuntu Online
    Accounts support.
  - Filter out -Bsymbolic-functions from LDFLAGS (for future people
    wondering about this change, see e.g. BGO #594473 and duplicates).
  - Enable Ubuntu Online Accounts and split it and GOA into a separate
    package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
2
/*
3
 
 * cal-backend-card-sexp.h
4
3
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
5
4
 *
6
5
 * Authors:
7
6
 *   Chris Lahey <clahey@ximian.com>
8
7
 *
9
 
 * This library is free software; you can redistribute it and/or
10
 
 * modify it under the terms of the GNU Library General Public
11
 
 * License, version 2, as published by the Free Software Foundation.
 
8
 * This library is free software; you can redistribute it and/or modify it
 
9
 * under the terms of the GNU Lesser General Public License as published by
 
10
 * the Free Software Foundation.
12
11
 *
13
12
 * This library is distributed in the hope that it will be useful, but
14
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
 
 * Library General Public License for more details.
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
14
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
15
 * for more details.
17
16
 *
18
 
 * You should have received a copy of the GNU Library General Public
19
 
 * License along with this library; if not, write to the Free Software
20
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21
 
 * 02110-1301, USA.
 
17
 * You should have received a copy of the GNU Lesser General Public License
 
18
 * along with this library; if not, see <http://www.gnu.org/licenses/>.
22
19
 */
23
20
 
24
21
#if !defined (__LIBEDATA_CAL_H_INSIDE__) && !defined (LIBEDATA_CAL_COMPILATION)
55
52
typedef struct _ECalBackendSExpClass ECalBackendSExpClass;
56
53
typedef struct _ECalBackendSExpPrivate ECalBackendSExpPrivate;
57
54
 
 
55
/**
 
56
 * ECalBackendSexp:
 
57
 *
 
58
 * Contains only private data that should be read and manipulated using the
 
59
 * functions below.
 
60
 */
58
61
struct _ECalBackendSExp {
 
62
        /*< private >*/
59
63
        GObject parent;
60
64
        ECalBackendSExpPrivate *priv;
61
65
};
62
66
 
 
67
/**
 
68
 * ECalBackendSexpClass:
 
69
 *
 
70
 * Class structure for the #ECalBackendSexp class.
 
71
 */
63
72
struct _ECalBackendSExpClass {
 
73
        /*< private >*/
64
74
        GObjectClass parent_class;
65
75
};
66
76