1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
3 * Copyright (C) 2000 Ximian Inc.
5 * Authors: Michael Zucchi <notzed@ximian.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of version 2 of the GNU General Public
9 * License as published by the Free Software Foundation.
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 GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
23 #ifndef _CAMEL_VEE_STORE_H
24 #define _CAMEL_VEE_STORE_H
29 #endif /* __cplusplus */
32 #include <camel/camel-store.h>
34 #define CAMEL_VEE_STORE(obj) CAMEL_CHECK_CAST (obj, camel_vee_store_get_type (), CamelVeeStore)
35 #define CAMEL_VEE_STORE_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, camel_vee_store_get_type (), CamelVeeStoreClass)
36 #define CAMEL_IS_VEE_STORE(obj) CAMEL_CHECK_TYPE (obj, camel_vee_store_get_type ())
38 typedef struct _CamelVeeStore CamelVeeStore;
39 typedef struct _CamelVeeStoreClass CamelVeeStoreClass;
41 /* open mode for folder, vee folder auto-update */
42 #define CAMEL_STORE_VEE_FOLDER_AUTO (1<<16)
44 struct _CamelVeeStore {
47 struct _CamelVeeStorePrivate *priv;
50 struct _CamelVeeStoreClass {
51 CamelStoreClass parent_class;
54 CamelType camel_vee_store_get_type (void);
55 CamelVeeStore *camel_vee_store_new (void);
59 #endif /* __cplusplus */
61 #endif /* ! _CAMEL_VEE_STORE_H */