From: Alexander Alekhin Date: Mon, 3 Dec 2018 14:38:57 +0000 (+0300) Subject: core: add getcwd() stub X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1^2~389^2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80c2adbda1f7f4e4a07bc5b9cc7118c390b877aa;p=platform%2Fupstream%2Fopencv.git core: add getcwd() stub --- diff --git a/modules/core/src/utils/filesystem.cpp b/modules/core/src/utils/filesystem.cpp index 3505951..5b90494 100644 --- a/modules/core/src/utils/filesystem.cpp +++ b/modules/core/src/utils/filesystem.cpp @@ -563,6 +563,7 @@ cv::String getCacheDirectory(const char* sub_directory_name, const char* configu cv::String canonical(const cv::String& /*path*/) { NOT_IMPLEMENTED } bool exists(const cv::String& /*path*/) { NOT_IMPLEMENTED } void remove_all(const cv::String& /*path*/) { NOT_IMPLEMENTED } +cv::String getcwd() { NOT_IMPLEMENTED } bool createDirectory(const cv::String& /*path*/) { NOT_IMPLEMENTED } bool createDirectories(const cv::String& /*path*/) { NOT_IMPLEMENTED } cv::String getCacheDirectory(const char* /*sub_directory_name*/, const char* /*configuration_name = NULL*/) { NOT_IMPLEMENTED }