Initialize the gmime for upstream
[platform/upstream/gmime.git] / gmime / gmime-stream-filter.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*  GMime
3  *  Copyright (C) 2000-2012 Jeffrey Stedfast
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Lesser General Public License
7  *  as published by the Free Software Foundation; either version 2.1
8  *  of the License, or (at your option) any later version.
9  *
10  *  This library is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *  Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public
16  *  License along with this library; if not, write to the Free
17  *  Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
18  *  02110-1301, USA.
19  */
20
21
22 #ifndef __GMIME_STREAM_FILTER_H__
23 #define __GMIME_STREAM_FILTER_H__
24
25 #include <gmime/gmime-stream.h>
26 #include <gmime/gmime-filter.h>
27
28 G_BEGIN_DECLS
29
30 #define GMIME_TYPE_STREAM_FILTER            (g_mime_stream_filter_get_type ())
31 #define GMIME_STREAM_FILTER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMIME_TYPE_STREAM_FILTER, GMimeStreamFilter))
32 #define GMIME_STREAM_FILTER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GMIME_TYPE_STREAM_FILTER, GMimeStreamFilterClass))
33 #define GMIME_IS_STREAM_FILTER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMIME_TYPE_STREAM_FILTER))
34 #define GMIME_IS_STREAM_FILTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GMIME_TYPE_STREAM_FILTER))
35 #define GMIME_STREAM_FILTER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GMIME_TYPE_STREAM_FILTER, GMimeStreamFilterClass))
36
37 typedef struct _GMimeStreamFilter GMimeStreamFilter;
38 typedef struct _GMimeStreamFilterClass GMimeStreamFilterClass;
39
40 /**
41  * GMimeStreamFilter:
42  * @parent_object: parent #GMimeStream
43  * @priv: private state data
44  * @source: source stream
45  *
46  * A #GMimeStream which passes data through any #GMimeFilter objects.
47  **/
48 struct _GMimeStreamFilter {
49         GMimeStream parent_object;
50         
51         struct _GMimeStreamFilterPrivate *priv;
52         
53         GMimeStream *source;
54 };
55
56 struct _GMimeStreamFilterClass {
57         GMimeStreamClass parent_class;
58         
59 };
60
61
62 GType g_mime_stream_filter_get_type (void);
63
64 GMimeStream *g_mime_stream_filter_new (GMimeStream *stream);
65
66 int g_mime_stream_filter_add (GMimeStreamFilter *stream, GMimeFilter *filter);
67 void g_mime_stream_filter_remove (GMimeStreamFilter *stream, int id);
68
69 G_END_DECLS
70
71 #endif /* __GMIME_STREAM_FILTER_H__ */