2 memory-stream.hh -- declare Memory_out_stream
4 source file of the GNU LilyPond music typesetter
6 (c) 2005--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #ifndef MEMORY_STREAM_HH
10 #define MEMORY_STREAM_HH
16 #include "libc-extension.hh"
17 #include "file-cookie.hh"
19 class Memory_out_stream
26 static lily_cookie_io_functions_t functions_;
27 static const int block_size_;
30 static ssize_t reader (void *, char *, size_t);
31 static ssize_t writer (void *, char const *, size_t);
32 static int seeker (void *, off64_t *, int);
33 static int cleaner (void *);
36 ~Memory_out_stream ();
37 FILE *get_file () const;
38 char const *get_string () const;
39 ssize_t get_length () const;
42 #endif /* MEMORY_STREAM_HH */