aboutsummaryrefslogtreecommitdiff
path: root/libsylph/virtual.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-12-19 06:41:50 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-12-19 06:41:50 +0000
commitd55459c79d6ddfa0b006c5696d408a7e388cf8c8 (patch)
tree98e8ea35bfce5bc235adbc544de8aba1f754b8ac /libsylph/virtual.h
parent1ca5b9aa126b860d9198f85e44104f857513bef5 (diff)
implemented query search and virtual folder (merged from newsearch branch).
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@836 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/virtual.h')
-rw-r--r--libsylph/virtual.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/libsylph/virtual.h b/libsylph/virtual.h
new file mode 100644
index 00000000..1a7ba38f
--- /dev/null
+++ b/libsylph/virtual.h
@@ -0,0 +1,38 @@
+/*
+ * LibSylph -- E-Mail client library
+ * Copyright (C) 1999-2005 Hiroyuki Yamamoto
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __VIRTUAL_H__
+#define __VIRTUAL_H__
+
+#include <glib.h>
+
+#include "folder.h"
+
+typedef struct _VirtualFolder VirtualFolder;
+
+#define VIRTUAL_FOLDER(obj) ((VirtualFolder *)obj)
+
+struct _VirtualFolder
+{
+ LocalFolder lfolder;
+};
+
+FolderClass *virtual_get_class (void);
+
+#endif /* __VIRTUAL_H__ */