13 lines
185 B
C++
13 lines
185 B
C++
#ifndef EXPORTDIALOG_H
|
|
#define EXPORTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class ExportDialog : public QDialog
|
|
{
|
|
public:
|
|
ExportDialog(QWidget* parent = nullptr);
|
|
};
|
|
|
|
#endif // EXPORTDIALOG_H
|