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

« back to all changes in this revision

Viewing changes to lily/include/column-x-positions.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
  column-x-positions.hh -- part of GNU LilyPond
3
3
 
4
 
  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
4
  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
5
*/
6
6
 
7
7
#ifndef COLUMN_X_POSITIONS_HH
8
8
#define COLUMN_X_POSITIONS_HH
9
9
 
10
 
#include "parray.hh"
 
10
#include "std-vector.hh"
11
11
#include "lily-proto.hh"
12
12
 
13
 
 
14
13
struct Column_x_positions
15
14
{
16
 
  Link_array<Grob> cols_;
17
 
  Link_array<Grob> loose_cols_;
18
 
  
19
 
  Array<Real> config_;
 
15
  vector<Grob*> cols_;
 
16
  vector<Grob*> loose_cols_;
 
17
 
 
18
  vector<Real> config_;
20
19
  Real force_;
21
20
  bool satisfies_constraints_;
22
21
 
23
22
  Column_x_positions ();
24
23
};
25
24
 
26
 
 
27
25
#endif // COLUMN_X_POSITIONS_HH
28
26