blob: edfa72c23f5fe52faf35501a4fe9da28a47bfefa (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
file-name.hh -- declare File_name
source file of the Flower Library
(c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
*/
#ifndef FILE_NAME_HH
#define FILE_NAME_HH
#include "std-vector.hh"
#include "std-string.hh"
std::string dir_name (std::string const file_name);
std::string get_working_directory ();
class File_name
{
public:
string root_;
string dir_;
string base_;
string ext_;
File_name (string);
bool is_absolute () const;
string to_string () const;
};
#endif /* FILE_NAME */
|