Add optimized indexing capabilities for phone number values.
[platform/upstream/evolution-data-server.git] / camel / camel-sasl-gssapi.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Authors: Jeffrey Stedfast <fejj@ximian.com>
4  *
5  *  Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU Lesser General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU Lesser General Public License for more details.
16  *
17  *  You should have received a copy of the GNU Lesser General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #if !defined (__CAMEL_H_INSIDE__) && !defined (CAMEL_COMPILATION)
24 #error "Only <camel/camel.h> can be included directly."
25 #endif
26
27 #ifndef CAMEL_SASL_GSSAPI_H
28 #define CAMEL_SASL_GSSAPI_H
29
30 #include <sys/types.h>
31 #include <camel/camel-sasl.h>
32
33 /* Standard GObject macros */
34 #define CAMEL_TYPE_SASL_GSSAPI \
35         (camel_sasl_gssapi_get_type ())
36 #define CAMEL_SASL_GSSAPI(obj) \
37         (G_TYPE_CHECK_INSTANCE_CAST \
38         ((obj), CAMEL_TYPE_SASL_GSSAPI, CamelSaslGssapi))
39 #define CAMEL_SASL_GSSAPI_CLASS(cls) \
40         (G_TYPE_CHECK_CLASS_CAST \
41         ((cls), CAMEL_TYPE_SASL_GSSAPI, CamelSaslGssapiClass))
42 #define CAMEL_IS_SASL_GSSAPI(obj) \
43         (G_TYPE_CHECK_INSTANCE_TYPE \
44         ((obj), CAMEL_TYPE_SASL_GSSAPI))
45 #define CAMEL_IS_SASL_GSSAPI_CLASS(cls) \
46         (G_TYPE_CHECK_CLASS_TYPE \
47         ((cls), CAMEL_TYPE_SASL_GSSAPI))
48 #define CAMEL_SASL_GSSAPI_GET_CLASS(obj) \
49         (G_TYPE_INSTANCE_GET_CLASS \
50         ((obj), CAMEL_TYPE_SASL_GSSAPI, CamelSaslGssapiClass))
51
52 G_BEGIN_DECLS
53
54 typedef struct _CamelSaslGssapi CamelSaslGssapi;
55 typedef struct _CamelSaslGssapiClass CamelSaslGssapiClass;
56 typedef struct _CamelSaslGssapiPrivate CamelSaslGssapiPrivate;
57
58 struct _CamelSaslGssapi {
59         CamelSasl parent;
60         CamelSaslGssapiPrivate *priv;
61 };
62
63 struct _CamelSaslGssapiClass {
64         CamelSaslClass parent_class;
65 };
66
67 GType camel_sasl_gssapi_get_type (void);
68
69 G_END_DECLS
70
71 #endif /* CAMEL_SASL_GSSAPI_H */