Files
Chronos/sources/aboutbox.h
Alexis Delhaie 68f44834de beta 2
2020-08-02 22:17:09 +02:00

24 lines
293 B
C++

#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