| 33 | |
| 34 | |
| 35 | DepthMapFileFilter::DepthMapFileFilter() |
| 36 | : FileIOFilter( { |
| 37 | "_Depth Map Filter", |
| 38 | DEFAULT_PRIORITY, // priority |
| 39 | QStringList(), |
| 40 | "txt", |
| 41 | QStringList(), |
| 42 | QStringList{ GetFileFilter() }, |
| 43 | Export | BuiltIn |
| 44 | } ) |
| 45 | { |
| 46 | } |
| 47 | |
| 48 | bool DepthMapFileFilter::canSave(CC_CLASS_ENUM type, bool& multiple, bool& exclusive) const |
| 49 | { |
nothing calls this directly
no test coverage detected