X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flilypond-version.cc;h=cc829ab6ca19d4aefc147af341a880423adbdb8e;hb=151661b40b650bab2be7087d07b21012ca826432;hp=252366251d365ffcf53fffcd8e50bedbfa388a42;hpb=31568c504806f35aac420a394c9eab07abd9faa7;p=lilypond.git diff --git a/lily/lilypond-version.cc b/lily/lilypond-version.cc index 252366251d..cc829ab6ca 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--2010 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]);