Sent precise transport information to LV2 plugins via events.
[ardour.git] / libs / ardour / ardour / filesystem_paths.h
index 7e14c9a4faf7a8ce9265e618cdd2fe3196b3c834..cfeb633597cb2fac5c34c22d704e9d791cb3728c 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2007 Tim Mayberry 
+    Copyright (C) 2007 Tim Mayberry
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -20,7 +20,6 @@
 #ifndef ARDOUR_FILESYSTEM_PATHS_INCLUDED
 #define ARDOUR_FILESYSTEM_PATHS_INCLUDED
 
-#include "pbd/filesystem.h"
 #include "pbd/search_path.h"
 
 namespace ARDOUR {
@@ -28,20 +27,28 @@ namespace ARDOUR {
        /**
         * @return the path to the directory used to store user specific ardour
         * configuration files.
+        * @post user_config_directory() exists
         */
-       PBD::sys::path user_config_directory ();
+       std::string user_config_directory ();
 
        /**
         * @return the path to the directory that contains the system wide ardour
         * modules.
         */
-       PBD::sys::path ardour_module_directory ();
+       std::string ardour_dll_directory ();
 
-       PBD::SearchPath ardour_search_path ();
-
-       PBD::SearchPath system_config_search_path ();
+       /**
+        * @return the search path to be used when looking for per-system
+        * configuration files. This may include user configuration files.
+        */
+       PBD::SearchPath ardour_config_search_path ();
 
-       PBD::SearchPath system_data_search_path ();
+       /**
+        * @return the search path to be used when looking for data files
+        * that could be shared by systems (h/w and configuration independent
+        * files, such as icons, XML files, etc)
+        */
+       PBD::SearchPath ardour_data_search_path ();
 
 } // namespace ARDOUR