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

« back to all changes in this revision

Viewing changes to lily/include/separating-group-spanner.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
  separating-group-spanner.hh -- declare Separating_group_spanner
3
 
  
 
3
 
4
4
  source file of the GNU LilyPond music typesetter
5
 
  
6
 
  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
 
  
8
 
 */
 
5
 
 
6
  (c) 1998--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
7
*/
9
8
 
10
9
#ifndef SEPARATING_GROUP_SPANNER_HH
11
10
#define SEPARATING_GROUP_SPANNER_HH
14
13
 
15
14
class Separating_group_spanner
16
15
{
17
 
  static void find_rods (Item*, SCM, Real);
 
16
  static void find_rods (Item *,
 
17
                         vector<Grob*> const &separators,
 
18
                         vsize idx,
 
19
                         Real);
18
20
public:
19
 
  static void add_spacing_unit (Grob*me, Item*);
20
 
  
21
 
  static bool has_interface (Grob*);
22
 
  DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM ));
 
21
  static void add_spacing_unit (Grob *me, Item *);
 
22
 
 
23
  static bool has_interface (Grob *);
 
24
  DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM));
23
25
};
24
26
 
25
27
#endif /* SEPARATING_GROUP_SPANNER_HH */