]> git.donarmstrong.com Git - lilypond.git/blob - mi2mu/version.cc
cb58c6b5b2874cd8a8c1e89536cba5d1c63d70d3
[lilypond.git] / mi2mu / version.cc
1 //
2 // version.cc -- implement inexpensive versioning
3 //
4 // copyright 1997 Jan Nieuwenhuizen <jan@digicash.com>
5
6 #include "mi2mu.hh"
7 #include "fversion.hh"
8 #include "version.hh"
9
10 // should simply have Root class...
11 String
12 version_str()
13 {
14         return String ( "This is mi2mu " ) + VERSIONSTR 
15                 + "/FlowerLib " + FVERSIONSTR
16                 + " of " +  __DATE__ + " " + __TIME__;
17 }
18