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

« back to all changes in this revision

Viewing changes to lily/include/binary-source-file.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
1
//
2
2
//  binary-source-file.hh -- declare Binary_source_file
3
3
//
4
 
//  (c) 1997--2004 Jan Nieuwenhuizen <janneke@gnu.org>
 
4
//  (c) 1997--2006 Jan Nieuwenhuizen <janneke@gnu.org>
5
5
 
6
6
#ifndef BINARY_SOURCE_FILE_HH
7
7
#define BINARY_SOURCE_FILE_HH
11
11
class Binary_source_file : public Source_file
12
12
{
13
13
public:
14
 
  Binary_source_file (String& filename_string );
 
14
  Binary_source_file (string &file_name_string);
15
15
  virtual ~Binary_source_file ();
16
16
 
17
 
  U8 get_U8 (); 
 
17
  U8 get_U8 ();
18
18
  U16 get_U16 ();
19
19
  U32 get_U32 ();
20
20
  Byte get_Byte () {return get_U8 (); }
21
21
  int get_int () { return get_U32 (); }
22
 
  
23
 
  virtual String error_string (char const* pos_str0 ) const;
24
 
  virtual int get_line (char const* pos_str0 ) const;
 
22
 
 
23
  virtual string quote_input (char const *pos_str0) const;
 
24
  virtual int get_line (char const *pos_str0) const;
25
25
};
26
26
 
27
27
#endif // BINARY_SOURCE_FILE_HH