Subversion Repositories seema-scanner

Rev

Blame | Last modification | View Log | RSS feed

#ifndef SMLogDialog_H
#define SMLogDialog_H

#include <QDialog>

namespace Ui {
class SMLogDialog;
}

class SMLogDialog : public QDialog
{
    Q_OBJECT

    public:
        explicit SMLogDialog(QWidget *parent = 0);
        ~SMLogDialog();

    public slots:
        void showLogMessage(QString log);
        void clearLog();

    private:
        Ui::SMLogDialog *ui;
};

#endif // SMLogDialog_H