| 15 | #include "filesystemwatcher.h" |
| 16 | |
| 17 | class INotifyEvent { |
| 18 | public: |
| 19 | uint32_t mask; |
| 20 | QString path; |
| 21 | |
| 22 | public: |
| 23 | INotifyEvent(uint32_t mask, QString path) : mask(mask), path(std::move(path)) {} |
| 24 | }; |
| 25 | |
| 26 | class FileSystemWatcher::PrivateData { |
| 27 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected