]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/file-path.hh
Run `make grand-replace'.
[lilypond.git] / flower / include / file-path.hh
index 2055d08f011c35415ce7f757fbfcda7d31587cd8..e66ddfa0d4cd38d4873acfc7e63f389b60d6a88e 100644 (file)
@@ -1,51 +1,42 @@
 /*
-  file-path.hh -- declare Path and File_path
+  file-path.hh -- declare File_path
 
   source file of the Flower Library
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef FILE_PATH_HH
 #define FILE_PATH_HH
 
-#include "string.hh"
-#include "array.hh"
+#include "std-vector.hh"
+#include "std-string.hh"
 
-
-/**    
-  search in directories for a file.
+/**
+   search in directories for a file.
 
    Abstraction of PATH variable. An interface for searching input files.
    Search a number of dirs for a file.
 
-   TODO: add a unix style PATH interface 
+   TODO: add a unix style PATH interface
 */
 
-class Path
+class File_path
 {
-public:
-  String root;
-  String dir;
-  String base;
-  String ext;
+  vector<string> dirs_;
 
-  String string () const;
-};
-
-class File_path : private Array<String>
-{
 public:
-  String find (String nm) const;
-
-  Array<String>::push;
-  void prepend (String str) { Array<String>::insert (str, 0); }
-  String string ()const;
-  bool try_add (String str);
-  void add (String);
-  void parse_path (String);
+  vector<string> directories () const;
+  string find (string name) const;
+  string find (string name, char const *extensions[]);
+  string to_string () const;
+  bool try_append (string str);
+  void append (string str);
+  void parse_path (string);
+  void prepend (string str);
 };
 
-Path split_path (String path);
+bool is_file (string file_name);
+bool is_dir (string file_name);
 
 #endif /* FILE_PATH */