| 155 | public: |
| 156 | static constexpr FileKind expectedKind = File::DataFileKind; |
| 157 | DataFile(mode_t mode, backend_t backend) |
| 158 | : File(File::DataFileKind, mode | S_IFREG, backend) {} |
| 159 | DataFile(mode_t mode, backend_t backend, mode_t fileType) |
| 160 | : File(File::DataFileKind, mode | fileType, backend) {} |
| 161 | virtual ~DataFile() = default; |
nothing calls this directly
no outgoing calls
no test coverage detected