diff --git a/libs/pbd/pbd/search_path.h b/libs/pbd/pbd/search_path.h index 41b1ffee55..f669d7f25a 100644 --- a/libs/pbd/pbd/search_path.h +++ b/libs/pbd/pbd/search_path.h @@ -114,12 +114,26 @@ public: */ LIBPBD_TEMPLATE_MEMBER_API Searchpath& add_subdirectory_to_paths (const std::string& subdir); -protected: - + /** + * Add directory_path to this Searchpath. + */ LIBPBD_TEMPLATE_MEMBER_API void add_directory (const std::string& directory_path); + + /** + * Add directories in paths to this Searchpath. + */ LIBPBD_TEMPLATE_MEMBER_API void add_directories (const std::vector& paths); + + /** + * Remove directory_path from this Searchpath. + */ LIBPBD_TEMPLATE_MEMBER_API void remove_directory (const std::string& directory_path); + + /** + * Remove all the directories in paths from this Searchpath. + */ LIBPBD_TEMPLATE_MEMBER_API void remove_directories (const std::vector& paths); + }; LIBPBD_API void export_search_path (const std::string& base_dir, const char* varname, const char* dir);