| 52 | PropertyFileIncluded::PropertyFileIncluded() = default; |
| 53 | |
| 54 | PropertyFileIncluded::~PropertyFileIncluded() |
| 55 | { |
| 56 | // clean up |
| 57 | if (!_cValue.empty()) { |
| 58 | Base::FileInfo file(_cValue.c_str()); |
| 59 | file.setPermissions(Base::FileInfo::ReadWrite); |
| 60 | file.deleteFile(); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | void PropertyFileIncluded::aboutToSetValue() |
| 65 | { |
nothing calls this directly
no test coverage detected