Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / camel-mime-filter-index.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  *  Copyright (C) 2000 Ximian Inc.
4  *
5  *  Authors: Michael Zucchi <notzed@ximian.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of version 2 of the GNU Lesser General Public
9  * License as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22
23 #ifndef _CAMEL_MIME_FILTER_INDEX_H
24 #define _CAMEL_MIME_FILTER_INDEX_H
25
26 #include <camel/camel-mime-filter.h>
27
28 #define CAMEL_MIME_FILTER_INDEX(obj)         CAMEL_CHECK_CAST (obj, camel_mime_filter_index_get_type (), CamelMimeFilterIndex)
29 #define CAMEL_MIME_FILTER_INDEX_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, camel_mime_filter_index_get_type (), CamelMimeFilterIndexClass)
30 #define CAMEL_IS_MIME_FILTER_INDEX(obj)      CAMEL_CHECK_TYPE (obj, camel_mime_filter_index_get_type ())
31
32 G_BEGIN_DECLS
33
34 typedef struct _CamelMimeFilterIndexClass CamelMimeFilterIndexClass;
35
36 struct _CamelMimeFilterIndex {
37         CamelMimeFilter parent;
38
39         struct _CamelMimeFilterIndexPrivate *priv;
40
41         struct _CamelIndex *index;
42         struct _CamelIndexName *name;
43 };
44
45 struct _CamelMimeFilterIndexClass {
46         CamelMimeFilterClass parent_class;
47 };
48
49 CamelType               camel_mime_filter_index_get_type        (void);
50 CamelMimeFilterIndex      *camel_mime_filter_index_new  (void);
51
52 CamelMimeFilterIndex      *camel_mime_filter_index_new_index(struct _CamelIndex *index);
53
54 /* Set the match name for any indexed words */
55 void camel_mime_filter_index_set_name (CamelMimeFilterIndex *filter, struct _CamelIndexName *name);
56 void camel_mime_filter_index_set_index (CamelMimeFilterIndex *filter, struct _CamelIndex *index);
57
58 G_END_DECLS
59
60 #endif /* ! _CAMEL_MIME_FILTER_INDEX_H */