| 44 | // ============================================================================= |
| 45 | |
| 46 | std::string XMLSaveSupport::getFileName() const { |
| 47 | std::string file(""); |
| 48 | if (!_filePath.empty()) { |
| 49 | std::string path; |
| 50 | StringConverter::splitPath(_filePath, path, file); |
| 51 | } |
| 52 | return file; |
| 53 | } |
| 54 | |
| 55 | bool XMLSaveSupport::saveXML(const std::string &xml) const { |
| 56 | if (!_filePath.empty()) { |
nothing calls this directly
no outgoing calls
no test coverage detected