| 1601 | } |
| 1602 | |
| 1603 | void MatrixView::exportToFits(const QString& fileName, const int exportTo) const { |
| 1604 | #ifndef SDK |
| 1605 | auto* filter = new FITSFilter; |
| 1606 | filter->setExportTo(exportTo); |
| 1607 | filter->write(fileName, m_matrix); |
| 1608 | delete filter; |
| 1609 | #else |
| 1610 | Q_UNUSED(fileName) |
| 1611 | Q_UNUSED(exportTo) |
| 1612 | #endif |
| 1613 | } |
no test coverage detected