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.1.11
[lilypond.git]
/
lib
/
moment.cc
blob
2557acb2a5af4361eccb35f12c336a97e650fe87
1
/*
2
moment.cc -- implement Moment
3
4
source file of the GNU LilyPond music typesetter
5
6
(c) 1996,1997 Han-Wen Nienhuys <hanwen@stack.nl>
7
*/
8
9
#include <iostream.h>
10
#include
"string.hh"
11
#include
"moment.hh"
12
13
void
14
printm
(
Moment
const
&
m
)
15
{
16
cout
<<
String
(
m
) <<
flush
;
17
}
18
19