This commit is contained in:
Alexis Delhaie
2020-08-02 22:17:09 +02:00
commit 68f44834de
31 changed files with 3088 additions and 0 deletions

23
sources/aboutbox.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef ABOUTBOX_H
#define ABOUTBOX_H
#include <QDialog>
#include <iostream>
namespace Ui {
class AboutBox;
}
class AboutBox : public QDialog
{
Q_OBJECT
public:
explicit AboutBox(QWidget *parent = nullptr);
~AboutBox();
private:
Ui::AboutBox *ui;
};
#endif // ABOUTBOX_H