initial commit

This commit is contained in:
2022-04-04 16:45:17 +02:00
parent cd90f4e811
commit 44bba9bbdc
12 changed files with 1082 additions and 116 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef CLOGWINDOW_H
#define CLOGWINDOW_H
#include <QDialog>
namespace Ui {
class cLogWindow;
}
class cLogWindow : public QDialog
{
Q_OBJECT
public:
explicit cLogWindow(QWidget *parent = nullptr);
~cLogWindow();
void setText(const QString& text);
private:
Ui::cLogWindow* ui;
};
#endif // CLOGWINDOW_H