Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / providers / local / camel-mh-folder.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
2  *
3  * Authors:
4  *      Michael Zucchi <notzed@ximian.com>
5  *
6  * Copyright (C) 1999 Ximian Inc.
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
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
20  * USA
21  */
22
23 #ifndef CAMEL_MH_FOLDER_H
24 #define CAMEL_MH_FOLDER_H 1
25
26 #include "camel-local-folder.h"
27
28 #define CAMEL_MH_FOLDER_TYPE     (camel_mh_folder_get_type ())
29 #define CAMEL_MH_FOLDER(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_MH_FOLDER_TYPE, CamelMhFolder))
30 #define CAMEL_MH_FOLDER_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_MH_FOLDER_TYPE, CamelMhFolderClass))
31 #define CAMEL_IS_MH_FOLDER(o)    (CAMEL_CHECK_TYPE((o), CAMEL_MH_FOLDER_TYPE))
32
33 G_BEGIN_DECLS
34
35 typedef struct {
36         CamelLocalFolder parent_object;
37
38 } CamelMhFolder;
39
40 typedef struct {
41         CamelLocalFolderClass parent_class;
42         
43         /* Virtual methods */
44         
45 } CamelMhFolderClass;
46
47 /* public methods */
48 CamelFolder *camel_mh_folder_new(CamelStore *parent_store, const char *full_name, guint32 flags, CamelException *ex);
49
50 /* Standard Camel function */
51 CamelType camel_mh_folder_get_type(void);
52
53 G_END_DECLS
54
55 #endif /* CAMEL_MH_FOLDER_H */