blob: c5d0d7f995c8c46a3207620614befac137890866 (
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
33
|
/*
rest.hh -- part of LilyPond
(c) 1996 Han-Wen Nienhuys
*/
#ifndef REST_HH
#define REST_HH
#include "item.hh"
/// ball at the end of the stem
struct Rest : public Item
{
int dots;
int balltype;
/****************/
void preprocess();
Rest(int dur,int dots);
void print()const;
private:
void brew_molecole();
};
/**
takes care of:
* help lines
* proper placing of dots
*/
#endif
|