mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 14:51:41 +00:00
23 lines
300 B
C++
23 lines
300 B
C++
#ifndef ABOUTWINDOW_H
|
|
#define ABOUTWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class AboutWindow;
|
|
}
|
|
|
|
class AboutWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutWindow(QWidget *parent = 0);
|
|
~AboutWindow();
|
|
|
|
private:
|
|
Ui::AboutWindow *ui;
|
|
};
|
|
|
|
#endif /* ABOUTWINDOW_H */
|