Path_VMS.h 762 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // Path_VMS.h
  3. //
  4. // Library: Foundation
  5. // Package: Filesystem
  6. // Module: Path
  7. //
  8. // Definition of the PathImpl class for OpenVMS.
  9. //
  10. // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
  11. // and Contributors.
  12. //
  13. // SPDX-License-Identifier: BSL-1.0
  14. //
  15. #ifndef Foundation_Path_VMS_INCLUDED
  16. #define Foundation_Path_VMS_INCLUDED
  17. #include "Poco/Foundation.h"
  18. #include <vector>
  19. namespace Poco {
  20. class PathImpl
  21. {
  22. public:
  23. static std::string currentImpl();
  24. static std::string homeImpl();
  25. static std::string tempImpl();
  26. static std::string nullImpl();
  27. static std::string expandImpl(const std::string& path);
  28. static void listRootsImpl(std::vector<std::string>& roots);
  29. };
  30. } // namespace Poco
  31. #endif // Foundation_Path_VMS_INCLUDED