CMiniLexicon::FindMajorSignatures(): use log file routines
[linguistica.git] / verifydialog.h
blob4b0ce6270b7e51c294bd578998a2060a69f895ea
1 // Simple yes/no dialog
2 // Copyright © 2009 The University of Chicago
3 #ifndef VERIFYDIALOG_H
4 #define VERIFYDIALOG_H
6 #include <QDialog>
7 #include "ui_verifydialogbase.h"
9 #include <QString>
10 #include <Qt>
12 class VerifyDialog : public QDialog, private Ui::VerifyDialogBase
14 Q_OBJECT
16 public:
17 VerifyDialog( QString msg, QWidget* parent = 0,
18 Qt::WindowFlags fl = 0 );
20 protected:
22 protected slots:
23 // Generated by Qt Designer
24 void yesSlot();
25 void noSlot();
26 void cancelSlot();
28 private:
32 #endif // VERIFYDIALOG_H