mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-10 04:15:53 +00:00
23 lines
305 B
C++
23 lines
305 B
C++
#ifndef AGLALLWINDOW_H
|
|
#define AGLALLWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
namespace Ui {
|
|
class AglAllWindow;
|
|
}
|
|
|
|
class AglAllWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AglAllWindow(QWidget *parent = 0);
|
|
~AglAllWindow();
|
|
|
|
private:
|
|
Ui::AglAllWindow *ui;
|
|
};
|
|
|
|
#endif // AGLALLWINDOW_H
|