X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flilypond-version.cc;h=58d181cb090fd0f56fc58fcaa5543c1588d549df;hb=642b015ad30b4424774c9c99b5928eb954450dd7;hp=252366251d365ffcf53fffcd8e50bedbfa388a42;hpb=31568c504806f35aac420a394c9eab07abd9faa7;p=lilypond.git diff --git a/lily/lilypond-version.cc b/lily/lilypond-version.cc index 252366251d..58d181cb09 100644 --- a/lily/lilypond-version.cc +++ b/lily/lilypond-version.cc @@ -1,16 +1,27 @@ /* - lilypond-version.cc -- implement Lilypond_version + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1998--2009 Jan Nieuwenhuizen - (c) 1998--2006 Jan Nieuwenhuizen + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include -#include "lilypond-input-version.hh" +#include "lilypond-version.hh" #include "string-convert.hh" -#include "std-vector.hh" +#include "misc.hh" Lilypond_version::Lilypond_version (int major, int minor, int patch) { @@ -26,7 +37,7 @@ Lilypond_version::Lilypond_version (string str) patch_ = 0; vector version; - version = String_convert::split (str, '.'); + version = string_split (str, '.'); if (version.size () > 0 && isdigit (version[0][0])) major_ = String_convert::dec2int (version[0]);