repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.1.55
[lilypond.git]
/
hdr
/
bar.hh
blob
3727358d96f3c2659e537a467dcfba1a65f0c23f
1
/*
2
bar.hh -- part of LilyPond
3
4
(c) 1996,97 Han-Wen Nienhuys
5
*/
6
7
#ifndef BAR_HH
8
#define BAR_HH
9
#include
"item.hh"
10
11
struct
Bar
:
Item
{
12
String type
;
13
14
Bar
(
String type
);
15
NAME_MEMBERS
(
Bar
);
16
void
do_print
()
const
;
17
Molecule
*
brew_molecule_p
()
const
;
18
};
19
#endif
// BAR_HH
20