Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / providers / local / camel-mh-store.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
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19  * USA
20  */
21
22 #ifndef CAMEL_MH_STORE_H
23 #define CAMEL_MH_STORE_H 1
24
25 #include "camel-local-store.h"
26
27 #define CAMEL_MH_STORE_TYPE     (camel_mh_store_get_type ())
28 #define CAMEL_MH_STORE(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_MH_STORE_TYPE, CamelMhStore))
29 #define CAMEL_MH_STORE_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_MH_STORE_TYPE, CamelMhStoreClass))
30 #define CAMEL_IS_MH_STORE(o)    (CAMEL_CHECK_TYPE((o), CAMEL_MH_STORE_TYPE))
31
32 G_BEGIN_DECLS
33
34 enum {
35         CAMEL_MH_DOTFOLDERS = (1<<0), /* update/use .folders file */
36 };
37
38 typedef struct {
39         CamelLocalStore parent_object;
40
41         guint32 flags;
42 } CamelMhStore;
43
44 typedef struct {
45         CamelLocalStoreClass parent_class;
46         
47 } CamelMhStoreClass;
48
49 /* public methods */
50
51 /* Standard Camel function */
52 CamelType camel_mh_store_get_type(void);
53
54 G_END_DECLS
55
56 #endif /* CAMEL_MH_STORE_H */