~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to flower/include/file-storage.hh

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  file-storage.hh -- declare File_storage, Mapped_file_storage, Simple_file_storage
3
 
 
4
 
  source file of the GNU LilyPond music typesetter
5
 
 
6
 
  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
 
*/
8
 
 
9
 
 
10
 
#ifndef FILE_STORAGE_HH
11
 
#define FILE_STORAGE_HH
12
 
 
13
 
#include "flower-proto.hh"
14
 
 
15
 
 
16
 
/**
17
 
  store a file in-memory.
18
 
 */
19
 
class File_storage
20
 
{
21
 
public:
22
 
  virtual char const* to_str0 () const=0;
23
 
  virtual int length () const=0;
24
 
  virtual ~File_storage (){}
25
 
};
26
 
 
27
 
#endif // FILE_STORAGE_HH