]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/path.hh
release: 0.1.8
[lilypond.git] / flower / include / path.hh
index d41dc2ba1cc6bd89f1f2d545529c95f4a878cab9..81a8cb1038902a0d18ec8a495a866fe16d43b181 100644 (file)
@@ -27,11 +27,11 @@ class File_path : private Array<String>
 {
 public:
     /// locate a file in the search path
-    String find(String nm)const;
+    String find (String nm)const;
 
     /// add to end of path.
     Array<String>::push;
-    void add(String str) { push(str); }
+    void add (String str) { push (str); }
 };
 
 /** split a path into its components.
@@ -41,6 +41,6 @@ public:
   @return
   String &drive, String &dirs, String &filebase, String &extension
  */
-void split_path(String path, String &drive, String &dirs, String &filebase, String &extension);
+void split_path (String path, String &drive, String &dirs, String &filebase, String &extension);
 
 #endif