aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-folder.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-05-26 09:05:49 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-05-26 09:05:49 +0800
commitac85ed858a161f7ff4cec27a8b0c1fff1b502ac9 (patch)
treeedc733a4776633cb5eb5b9f1fd9c053f7e181d2e /camel/providers/imap/camel-imap-folder.h
parentbd7bb08d4786f2d96c5d3cc556b7cd1333bcd81c (diff)
downloadgsoc2013-evolution-ac85ed858a161f7ff4cec27a8b0c1fff1b502ac9.tar
gsoc2013-evolution-ac85ed858a161f7ff4cec27a8b0c1fff1b502ac9.tar.gz
gsoc2013-evolution-ac85ed858a161f7ff4cec27a8b0c1fff1b502ac9.tar.bz2
gsoc2013-evolution-ac85ed858a161f7ff4cec27a8b0c1fff1b502ac9.tar.lz
gsoc2013-evolution-ac85ed858a161f7ff4cec27a8b0c1fff1b502ac9.tar.xz
gsoc2013-evolution-ac85ed858a161f7ff4cec27a8b0c1fff1b502ac9.tar.zst
gsoc2013-evolution-ac85ed858a161f7ff4cec27a8b0c1fff1b502ac9.zip
Updated several imap source files
svn path=/trunk/; revision=3210
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.h')
-rw-r--r--camel/providers/imap/camel-imap-folder.h19
1 files changed, 5 insertions, 14 deletions
diff --git a/camel/providers/imap/camel-imap-folder.h b/camel/providers/imap/camel-imap-folder.h
index 13471f2e23..5a54d693d2 100644
--- a/camel/providers/imap/camel-imap-folder.h
+++ b/camel/providers/imap/camel-imap-folder.h
@@ -2,10 +2,10 @@
/* camel-imap-folder.h : Abstract class for an imap folder */
/*
+ * Author:
+ * Jeffrey Stedfast <fejj@helixcode.com>
*
- * Authors: Jeffrey Stedfast <fejj@helixcode.com>
- *
- * Copyright (C) 2000 Helix Code .
+ * Copyright (C) 2000 Helix Code, Inc. (www.helixcode.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
@@ -34,12 +34,7 @@ extern "C" {
#endif /* __cplusplus }*/
#include <gtk/gtk.h>
-#include <camel/camel-folder.h>
-#include <camel/camel-folder-search.h>
-#include <libibex/ibex.h>
-#include "camel-imap-summary.h"
-
-/* #include "camel-store.h" */
+#include "camel-folder.h"
#define CAMEL_IMAP_FOLDER_TYPE (camel_imap_folder_get_type ())
#define CAMEL_IMAP_FOLDER(obj) (GTK_CHECK_CAST((obj), CAMEL_IMAP_FOLDER_TYPE, CamelImapFolder))
@@ -50,17 +45,12 @@ typedef struct {
CamelFolder parent_object;
gchar *folder_file_path; /* contains the messages */
- gchar *summary_file_path; /* contains the messages summary */
gchar *folder_dir_path; /* contains the subfolders */
gchar *index_file_path; /* index of body contents */
- ibex *index; /* index for this folder */
- CamelImapSummary *summary;
- CamelFolderSearch *search; /* used to run searches, we just use the real thing (tm) */
} CamelImapFolder;
-
typedef struct {
CamelFolderClass parent_class;
@@ -70,6 +60,7 @@ typedef struct {
/* public methods */
+CamelFolder *camel_imap_folder_new (CamelStore *parent, CamelException *ex);
/* Standard Gtk function */
GtkType camel_imap_folder_get_type (void);