lilypond-1.4.3
[lilypond.git] / flower / include / file-storage.hh
blob5af256f710f64152722626a827780c9e6cc5a937
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--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
10 #ifndef FILE_STORAGE_HH
11 #define FILE_STORAGE_HH
13 #include "flower-proto.hh"
16 /**
17 store a file in-memory.
19 class File_storage
21 public:
22 virtual char const* ch_C () const=0;
23 virtual int length_i () const=0;
24 virtual ~File_storage (){}
27 #endif // FILE_STORAGE_HH