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-0.0.27
[lilypond.git]
/
hdr
/
meter.hh
blob
835b661bae2eb29c963d51668c773f50a0963505
1
/*
2
meter.hh -- part of LilyPond
3
4
(c) 1996,97 Han-Wen Nienhuys
5
*/
6
7
#ifndef METER_HH
8
#define METER_HH
9
#include
"item.hh"
10
#include
"varray.hh"
11
12
struct
Meter
:
Item
{
13
const char
*
name
()
const
;
14
Array
<
Scalar
>
args
;
15
/****************/
16
17
Meter
(
Array
<
Scalar
>
args
) ;
18
Molecule
*
brew_molecule_p
()
const
;
19
};
20
#endif
// METER_HH
21