From c07ea1bc73672e9f05b4e669fa0fc9ad2cd91f28 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Mon, 19 Oct 2015 13:04:00 +1000 Subject: [PATCH] Expose protected PBD::Searchpath API I prefer to use these as they are more explicit than using the overloaded operators. --- libs/pbd/pbd/search_path.h | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) 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);