* mu-msg.c, mu-msg-priv.h: hook up with mu-msg-cache, mu-msg-file and mu-msg-doc

This commit is contained in:
Dirk-Jan C. Binnema
2011-05-17 23:20:05 +03:00
parent dbfd08e6cf
commit 3cdc810e81
2 changed files with 79 additions and 45 deletions

View File

@ -25,7 +25,7 @@
#include "mu-msg.h"
#include "mu-msg-file.h"
#include "mu-msg-db.h"
#include "mu-msg-doc.h"
#include "mu-msg-cache.h"
G_BEGIN_DECLS
@ -47,8 +47,8 @@ struct _MuMsg {
guint _refcount;
/* our two backend */
MuMsgFile *_file;
MuMsgDb *_db;
MuMsgFile *_file; /* based on GMime, ie. a file on disc */
MuMsgDoc *_doc; /* based on Xapian::Document */
MuMsgCache *_cache;
};