| 6 | #include "cmSystemTools.h" |
| 7 | |
| 8 | cmWorkingDirectory::cmWorkingDirectory(std::string const& newdir) |
| 9 | { |
| 10 | this->OldDir = cmSystemTools::GetLogicalWorkingDirectory(); |
| 11 | this->SetDirectory(newdir); |
| 12 | } |
| 13 | |
| 14 | cmWorkingDirectory::~cmWorkingDirectory() |
| 15 | { |
nothing calls this directly
no test coverage detected