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

« back to all changes in this revision

Viewing changes to lily/include/time-signature.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
  time_signature.hh -- declare Time_signature
3
3
 
4
 
  (c) 1996--2004 Han-Wen Nienhuys
 
4
  (c) 1996--2006 Han-Wen Nienhuys
5
5
*/
6
6
 
7
7
#ifndef METER_HH
15
15
   TODO:
16
16
 
17
17
   2+3+2/8 time_signatures
18
 
  
19
 
 */
 
18
*/
20
19
struct Time_signature
21
20
{
22
 
  static bool has_interface (Grob*);
23
 
  static Stencil special_time_signature (Grob*,SCM,int,int) ;
24
 
  static Stencil numbered_time_signature (Grob*,int, int);
25
 
  DECLARE_SCHEME_CALLBACK (print, (SCM ));
 
21
  static bool has_interface (Grob *);
 
22
  static Stencil special_time_signature (Grob *, SCM, int, int);
 
23
  static Stencil numbered_time_signature (Grob *, int, int);
 
24
  DECLARE_SCHEME_CALLBACK (print, (SCM));
26
25
};
27
26
#endif // METER_HH
28
27