]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/file-name.hh
Run `make grand-replace'.
[lilypond.git] / flower / include / file-name.hh
index 3d3a442f541c3c1bd08e0625466aa47d654b5c52..649521fa71f1a7f5ea834dc9d84fc2f51541b386 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the Flower Library
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef 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:
-  std::string root_;
-  std::string dir_;
-  std::string base_;
-  std::string ext_;
+  string root_;
+  string dir_;
+  string base_;
+  string ext_;
 
-  File_name (std::string);
-#if 0// STD_STRING
-  File_name (String);
-#endif
+  File_name (string="");
 
   bool is_absolute () const;
-  std::string to_string () const;
+  string to_string () const;
+  File_name canonicalized () const;
+  string dir_part () const;
+  string file_part () const;
 };
 
 #endif /* FILE_NAME */