Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / providers / local / camel-maildir-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_MAILDIR_STORE_H
23 #define CAMEL_MAILDIR_STORE_H 1
24
25 #include "camel-local-store.h"
26
27 #define CAMEL_MAILDIR_STORE_TYPE     (camel_maildir_store_get_type ())
28 #define CAMEL_MAILDIR_STORE(obj)     (CAMEL_CHECK_CAST((obj), CAMEL_MAILDIR_STORE_TYPE, CamelMaildirStore))
29 #define CAMEL_MAILDIR_STORE_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_MAILDIR_STORE_TYPE, CamelMaildirStoreClass))
30 #define CAMEL_IS_MAILDIR_STORE(o)    (CAMEL_CHECK_TYPE((o), CAMEL_MAILDIR_STORE_TYPE))
31
32 G_BEGIN_DECLS
33
34 typedef struct {
35         CamelLocalStore parent_object;
36         
37 } CamelMaildirStore;
38
39 typedef struct {
40         CamelLocalStoreClass parent_class;
41         
42 } CamelMaildirStoreClass;
43
44 /* public methods */
45
46 /* Standard Camel function */
47 CamelType camel_maildir_store_get_type(void);
48
49 G_END_DECLS
50
51 #endif /* CAMEL_MAILDIR_STORE_H */