diff options
author | bertrand <bertrand@helixcode.com> | 2000-01-25 09:09:56 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 2000-01-25 09:09:56 +0800 |
commit | 50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c (patch) | |
tree | 591b540959a558b6c908e7bcc671c0906e42a2a6 /camel/camel-stream-mem.h | |
parent | 7dded29a632d26b8ed2c279004dd5fe39014de27 (diff) | |
download | gsoc2013-evolution-50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c.tar.gz gsoc2013-evolution-50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c.tar.zst gsoc2013-evolution-50e5c22f0f5c4083ceee623b5bc02a6a7fc4f18c.zip |
parent class is now CamelSeekableStream idem idem idem idem (_seek):
2000-01-24 bertrand <bertrand@helixcode.com>
* camel/camel-seekable-stream.c:
* camel/camel-seekable-stream.h:
* camel/camel-simple-data-wrapper-stream.h: parent class is now
CamelSeekableStream
* camel/camel-stream-buffered-fs.h: idem
* camel/camel-stream-buffered-fs.c: idem
* camel/camel-stream-mem.h: idem
* camel/camel-stream-mem.c: idem
(_seek): change declaration
* camel/camel-stream-fs.c: parent class is now
CamelSeekableStream
(_seek): change declaration
* camel/camel-stream-fs.h: parent class is now
CamelSeekableStream
Major compatible change in the stream hierarchy.
Removed the seek method from the general streams
so that we can use them as "DataSources".
svn path=/trunk/; revision=1622
Diffstat (limited to 'camel/camel-stream-mem.h')
-rw-r--r-- | camel/camel-stream-mem.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/camel/camel-stream-mem.h b/camel/camel-stream-mem.h index 0ebcfead24..fa8c0514eb 100644 --- a/camel/camel-stream-mem.h +++ b/camel/camel-stream-mem.h @@ -36,7 +36,7 @@ extern "C" { #include <gtk/gtk.h> #include <stdio.h> -#include "camel-stream.h" +#include "camel-seekable-stream.h" #define CAMEL_STREAM_MEM_TYPE (camel_stream_mem_get_type ()) #define CAMEL_STREAM_MEM(obj) (GTK_CHECK_CAST((obj), CAMEL_STREAM_MEM_TYPE, CamelStreamMem)) @@ -53,17 +53,18 @@ typedef enum typedef struct { - CamelStream parent_object; + CamelSeekableStream parent_object; GByteArray *buffer; gint position; CamelStreamMemMode mode; + } CamelStreamMem; typedef struct { - CamelStreamClass parent_class; + CamelSeekableStreamClass parent_class; /* Virtual methods */ |