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