You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
352 B
C++
24 lines
352 B
C++
#ifndef EETBATCHDIALOG_H
|
|
#define EETBATCHDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class EetBatchDialog;
|
|
}
|
|
|
|
class EetBatchDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EetBatchDialog(QWidget *parent = 0);
|
|
~EetBatchDialog();
|
|
void addLog(const QString &log);
|
|
|
|
private:
|
|
Ui::EetBatchDialog *ui;
|
|
};
|
|
|
|
#endif // EETBATCHDIALOG_H
|