#ifndef SOFTCONFIGDIALOG_H
#define SOFTCONFIGDIALOG_H

#include <QDialog>
#include <QCheckBox>

class SoftConfigDialog : public QDialog {
    Q_OBJECT
public:
    explicit SoftConfigDialog(QWidget *parent = 0);

    QCheckBox *press_fd, *trans_fd, *anti_fd, *guangying_fd, *fdWidthSplit;
};

#endif // SOFTCONFIGDIALOG_H