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