*** empty log message ***
[lilypond/patrick.git] / flower / include / file-name.hh
blobbe2268ec858c28643cc8287f67ba7c6377fa50c2
1 /*
2 file-name.hh -- declare File_name
4 source file of the Flower Library
6 (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
9 #ifndef FILE_NAME_HH
10 #define FILE_NAME_HH
12 #include "array.hh"
13 #include "string.hh"
15 class File_name
17 public:
18 String root_;
19 String dir_;
20 String base_;
21 String ext_;
23 File_name (String);
25 String to_string () const;
26 char const *to_str0 () const;
29 #endif /* FILE_NAME */