15 lines
208 B
C++
15 lines
208 B
C++
#ifndef ORBITHUB_ABOUT_DIALOG_H
|
|
#define ORBITHUB_ABOUT_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class AboutDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget* parent = nullptr);
|
|
};
|
|
|
|
#endif
|