blob: 3da47d30dc62b2224422d9b7c9b62202895f8309 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
scoreline.hh -- part of LilyPond
(c) 1996 Han-Wen Nienhuys
*/
#ifndef SCORELINE_HH
#define SCORELINE_HH
#include "plist.hh"
#include "proto.hh"
#include "vray.hh"
/// the columns of a score that form one line.
struct
Line_of_score {
List<const PCol *> cols;
// need to store height of each staff.
PointerList<Line_of_staff*> staffs;
const PScore * score; // needed to generate staffs
/****************/
Line_of_score(svec<const PCol *> sv, const PScore *);
String TeXstring() const;
// is #c# contained in #*this#?
bool element(const PCol *c);
};
#endif
|