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.14
[lilypond.git]
/
mi2mu
/
version.cc
blob
57299cd3581d1a74b7e78207013246b78c0496f1
1
#include
"proto.hh"
2
#include
"string.hh"
3
4
const char
*
mi2mu_version_sz
();
5
6
// should simply have Root class...
7
String
8
mi2mu_version_str
()
9
{
10
return
String
(
mi2mu_version_sz
())
11
+
"/"
+
flower_version_sz
()
12
+
" of "
+
__DATE__
+
" "
+
__TIME__
;
13
}
14