Path_VMS.h 823 B

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