Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / providers / local / camel-mh-summary.h
1 /*
2  *  Copyright (C) 2000 Ximian Inc.
3  *
4  *  Authors: Not Zed <notzed@lostzed.mmc.com.au>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of version 2 of the GNU Lesser General Public
8  * License as published by the Free Software Foundation.
9  *
10  * This program 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  * 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 program; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef _CAMEL_MH_SUMMARY_H
22 #define _CAMEL_MH_SUMMARY_H
23
24 #include "camel-local-summary.h"
25 #include <camel/camel-folder.h>
26 #include <camel/camel-exception.h>
27 #include <camel/camel-index.h>
28
29 #define CAMEL_MH_SUMMARY(obj)   CAMEL_CHECK_CAST (obj, camel_mh_summary_get_type (), CamelMhSummary)
30 #define CAMEL_MH_SUMMARY_CLASS(klass)   CAMEL_CHECK_CLASS_CAST (klass, camel_mh_summary_get_type (), CamelMhSummaryClass)
31 #define CAMEL_IS_MH_SUMMARY(obj)      CAMEL_CHECK_TYPE (obj, camel_mh_summary_get_type ())
32
33 G_BEGIN_DECLS
34
35 typedef struct _CamelMhSummary  CamelMhSummary;
36 typedef struct _CamelMhSummaryClass     CamelMhSummaryClass;
37
38 struct _CamelMhSummary {
39         CamelLocalSummary parent;
40         struct _CamelMhSummaryPrivate *priv;
41 };
42
43 struct _CamelMhSummaryClass {
44         CamelLocalSummaryClass parent_class;
45
46         /* virtual methods */
47
48         /* signals */
49 };
50
51 CamelType        camel_mh_summary_get_type      (void);
52 CamelMhSummary  *camel_mh_summary_new(struct _CamelFolder *, const char *filename, const char *mhdir, CamelIndex *index);
53
54 G_END_DECLS
55
56 #endif /* ! _CAMEL_MH_SUMMARY_H */