| 282 | |
| 283 | public: |
| 284 | Mount(QString device, QString mountPoint, QString fsType, QString mountOptions) : |
| 285 | device(std::move(device)), |
| 286 | mountPoint(std::move(mountPoint)), |
| 287 | fsType(std::move(fsType)), |
| 288 | mountOptions(std::move( |
| 289 | mountOptions)) {} |
| 290 | |
| 291 | Mount(const Mount& other) = default; |
| 292 |
nothing calls this directly
no outgoing calls
no test coverage detected