| 1083 | } |
| 1084 | |
| 1085 | void Properties::setDirectoryPath(const std::string* path) |
| 1086 | { |
| 1087 | if (path) |
| 1088 | { |
| 1089 | setDirectoryPath(*path); |
| 1090 | } |
| 1091 | else |
| 1092 | { |
| 1093 | AX_SAFE_DELETE(_dirPath); |
| 1094 | } |
| 1095 | } |
| 1096 | |
| 1097 | void Properties::setDirectoryPath(std::string_view path) |
| 1098 | { |
no test coverage detected