| 30 | public: |
| 31 | SyxFileFilter() : FileFilter(".syx") {} |
| 32 | bool isFileSuitable(const File &file) const { |
| 33 | return file.getFileExtension().toLowerCase() == ".syx" && file.getSize() >= 4096; |
| 34 | } |
| 35 | bool isDirectorySuitable(const File &file) const { |
| 36 | return true; |
| 37 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected