Path.cpp 579 B

1234567891011121314151617181920212223242526272829303132333435
  1. #include "il2cpp-config.h"
  2. #include "os/Path.h"
  3. #include <string>
  4. #if IL2CPP_USE_GENERIC_ENVIRONMENT
  5. #include "os/Path.h"
  6. #include <string>
  7. namespace il2cpp
  8. {
  9. namespace os
  10. {
  11. std::string Path::GetExecutablePath()
  12. {
  13. return std::string("<NotImplemented>");
  14. }
  15. std::string Path::GetApplicationFolder()
  16. {
  17. return std::string("<NotImplemented>");
  18. }
  19. std::string Path::GetTempPath()
  20. {
  21. return std::string("<NotImplemented>");
  22. }
  23. bool Path::IsAbsolute(const std::string& path)
  24. {
  25. return false;
  26. }
  27. }
  28. }
  29. #endif