Subversion Repositories seema-scanner

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
225 jakw 1
#ifndef SMLogDialog_H
2
#define SMLogDialog_H
3
 
4
#include <QDialog>
5
 
6
namespace Ui {
7
class SMLogDialog;
8
}
9
 
10
class SMLogDialog : public QDialog
11
{
12
    Q_OBJECT
13
 
14
    public:
15
        explicit SMLogDialog(QWidget *parent = 0);
16
        ~SMLogDialog();
17
 
18
    public slots:
19
        void showLogMessage(QString log);
20
        void clearLog();
21
 
22
    private:
23
        Ui::SMLogDialog *ui;
24
};
25
 
26
#endif // SMLogDialog_H