X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Ffile-name.hh;h=b30dd9cd5b6d8f89ccb1e586a5ca3f3a8e595d1c;hb=254a3bc1651b28601eaebbfa538fac4042a18f68;hp=fb3e3ff13af246efcebe3abccd365647e750beca;hpb=238d0dc299ccd27351991fa383c1af1de98b2084;p=lilypond.git diff --git a/flower/include/file-name.hh b/flower/include/file-name.hh index fb3e3ff13a..b30dd9cd5b 100644 --- a/flower/include/file-name.hh +++ b/flower/include/file-name.hh @@ -1,28 +1,46 @@ /* - file-name.hh -- declare File_name + This file is part of LilyPond, the GNU music typesetter. - source file of the Flower Library + Copyright (C) 1997--2012 Han-Wen Nienhuys - (c) 1997--2005 Han-Wen Nienhuys + 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 . */ #ifndef FILE_NAME_HH #define FILE_NAME_HH -#include "array.hh" -#include "string.hh" +#include "std-vector.hh" +#include "std-string.hh" + +std::string dir_name (std::string file_name); +std::string get_working_directory (); class File_name { public: - String root_; - String dir_; - String base_; - String ext_; - - File_name (String); - - String to_string () const; + string root_; + string dir_; + string base_; + string ext_; + + File_name (string = ""); + + bool is_absolute () const; + string to_string () const; + File_name canonicalized () const; + string dir_part () const; + string file_part () const; }; #endif /* FILE_NAME */