repo.or.cz
/
lilypond
/
patrick.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* The grand 2005-2006 replace.
[lilypond/patrick.git]
/
flower
/
include
/
file-name.hh
blob
8defff15ca38b57cf6fa25d83497ed2a392d5f27
1
/*
2
file-name.hh -- declare File_name
3
4
source file of the Flower Library
5
6
(c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.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
bool
is_absolute
()
const
;
26
String
to_string
()
const
;
27
};
28
29
#endif
/* FILE_NAME */