* The grand 2005-2006 replace.
[lilypond/patrick.git] / flower / include / file-name.hh
blob8defff15ca38b57cf6fa25d83497ed2a392d5f27
1 /*
2 file-name.hh -- declare File_name
4 source file of the Flower Library
6 (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.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 bool is_absolute () const;
26 String to_string () const;
29 #endif /* FILE_NAME */