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

« back to all changes in this revision

Viewing changes to lily/include/clef.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
  clef.hh -- declare Clef
3
 
  
 
3
 
4
4
  source file of the GNU LilyPond music typesetter
5
 
  
6
 
  (c) 2000--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
 
  
8
 
 */
 
5
 
 
6
  (c) 2000--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
7
*/
9
8
 
10
9
#ifndef CLEF_HH
11
10
#define CLEF_HH
 
11
 
12
12
#include "lily-guile.hh"
13
13
#include "lily-proto.hh"
14
14
 
15
 
struct Clef 
 
15
struct Clef
16
16
{
17
 
  DECLARE_SCHEME_CALLBACK (before_line_breaking, (SCM ));
18
 
  DECLARE_SCHEME_CALLBACK (print, (SCM ));
19
 
  static bool has_interface (Grob*);
 
17
  DECLARE_SCHEME_CALLBACK (calc_glyph_name, (SCM));
 
18
  DECLARE_SCHEME_CALLBACK (print, (SCM));
 
19
  static bool has_interface (Grob *);
20
20
};
21
21
 
22
 
 
23
22
#endif /* CLEF_HH */
24
23