* The grand 2005-2006 replace.
[lilypond/patrick.git] / flower / include / file-storage.hh
blob80a832ab956c843cafb69ca3ca71450c54ccec9c
1 /*
2 file-storage.hh -- declare File_storage, Mapped_file_storage, Simple_file_storage
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #ifndef FILE_STORAGE_HH
10 #define FILE_STORAGE_HH
12 #include "flower-proto.hh"
14 /**
15 store a file in-memory.
17 class File_storage
19 public:
20 virtual char const *to_str0 () const = 0;
21 virtual int length () const = 0;
22 virtual ~File_storage (){}
25 #endif // FILE_STORAGE_HH