Extending test-client-custom-summary to try e_book_client_get_contacts_uids()
[platform/upstream/evolution-data-server.git] / camel / camel-mime-filter-crlf.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
4  *
5  *  Authors: Dan Winship <danw@ximian.com>
6  *           Jeffrey Stedfast <fejj@ximian.com>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of version 2 of the GNU Lesser General Public
10  * License as published by the Free Software Foundation.
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 GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this program; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
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_MIME_FILTER_CRLF_H
28 #define CAMEL_MIME_FILTER_CRLF_H
29
30 #include <camel/camel-enums.h>
31 #include <camel/camel-mime-filter.h>
32
33 /* Standard GObject macros */
34 #define CAMEL_TYPE_MIME_FILTER_CRLF \
35         (camel_mime_filter_crlf_get_type ())
36 #define CAMEL_MIME_FILTER_CRLF(obj) \
37         (G_TYPE_CHECK_INSTANCE_CAST \
38         ((obj), CAMEL_TYPE_MIME_FILTER_CRLF, CamelMimeFilterCRLF))
39 #define CAMEL_MIME_FILTER_CRLF_CLASS(cls) \
40         (G_TYPE_CHECK_CLASS_CAST \
41         ((cls), CAMEL_TYPE_MIME_FILTER_CRLF, CamelMimeFilterCRLFClass))
42 #define CAMEL_IS_MIME_FILTER_CRLF(obj) \
43         (G_TYPE_CHECK_INSTANCE_TYPE \
44         ((obj), CAMEL_TYPE_MIME_FILTER_CRLF))
45 #define CAMEL_IS_MIME_FILTER_CRLF_CLASS(cls) \
46         (G_TYPE_CHECK_CLASS_TYPE \
47         ((cls), CAMEL_TYPE_MIME_FILTER_CRLF))
48 #define CAMEL_MIME_FILTER_CRLF_GET_CLASS(obj) \
49         (G_TYPE_INSTANCE_GET_CLASS \
50         ((obj), CAMEL_TYPE_MIME_FILTER_CRLF, CamelMimeFilterCRLFClass))
51
52 G_BEGIN_DECLS
53
54 typedef struct _CamelMimeFilterCRLF CamelMimeFilterCRLF;
55 typedef struct _CamelMimeFilterCRLFClass CamelMimeFilterCRLFClass;
56 typedef struct _CamelMimeFilterCRLFPrivate CamelMimeFilterCRLFPrivate;
57
58 struct _CamelMimeFilterCRLF {
59         CamelMimeFilter parent;
60         CamelMimeFilterCRLFPrivate *priv;
61 };
62
63 struct _CamelMimeFilterCRLFClass {
64         CamelMimeFilterClass parent_class;
65 };
66
67 GType           camel_mime_filter_crlf_get_type (void);
68 CamelMimeFilter *
69                 camel_mime_filter_crlf_new      (CamelMimeFilterCRLFDirection direction,
70                                                  CamelMimeFilterCRLFMode mode);
71
72 G_END_DECLS
73
74 #endif /* CAMEL_MIME_FILTER_CRLF_H */