| 229 | } |
| 230 | |
| 231 | void swap(CppcheckLibraryData &other) noexcept { |
| 232 | containers.swap(other.containers); |
| 233 | defines.swap(other.defines); |
| 234 | undefines.swap(other.undefines); |
| 235 | functions.swap(other.functions); |
| 236 | memoryresource.swap(other.memoryresource); |
| 237 | podtypes.swap(other.podtypes); |
| 238 | smartPointers.swap(other.smartPointers); |
| 239 | typeChecks.swap(other.typeChecks); |
| 240 | platformTypes.swap(other.platformTypes); |
| 241 | reflections.swap(other.reflections); |
| 242 | markups.swap(other.markups); |
| 243 | entrypoints.swap(other.entrypoints); |
| 244 | } |
| 245 | |
| 246 | QString open(QIODevice &file); |
| 247 | QString toString() const; |
no outgoing calls