aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Foundation/include/Poco/Path_WIN32U.h
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/libs/poco/Foundation/include/Poco/Path_WIN32U.h
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/libs/poco/Foundation/include/Poco/Path_WIN32U.h')
-rw-r--r--contrib/libs/poco/Foundation/include/Poco/Path_WIN32U.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/contrib/libs/poco/Foundation/include/Poco/Path_WIN32U.h b/contrib/libs/poco/Foundation/include/Poco/Path_WIN32U.h
new file mode 100644
index 0000000000..94fca2b0a7
--- /dev/null
+++ b/contrib/libs/poco/Foundation/include/Poco/Path_WIN32U.h
@@ -0,0 +1,54 @@
+//
+// Path_WIN32U.h
+//
+// Library: Foundation
+// Package: Filesystem
+// Module: Path
+//
+// Definition of the PathImpl class for WIN32.
+//
+// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#ifndef Foundation_Path_WIN32U_INCLUDED
+#define Foundation_Path_WIN32U_INCLUDED
+
+
+#include "Poco/Foundation.h"
+#include <vector>
+
+
+namespace Poco {
+
+
+class Foundation_API PathImpl
+{
+public:
+ static std::string currentImpl();
+ static std::string homeImpl();
+ static std::string configHomeImpl();
+ static std::string dataHomeImpl();
+ static std::string cacheHomeImpl();
+ static std::string tempHomeImpl();
+ static std::string tempImpl();
+ static std::string configImpl();
+ static std::string nullImpl();
+ static std::string systemImpl();
+ static std::string expandImpl(const std::string& path);
+ static void listRootsImpl(std::vector<std::string>& roots);
+
+ enum
+ {
+ MAX_PATH_LEN = 32767
+ };
+};
+
+
+} // namespace Poco
+
+
+#endif // Foundation_Path_WIN32U_INCLUDED