mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-06-13 20:09:28 +00:00
25 lines
384 B
C++
25 lines
384 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
class QCloseEvent;
|
|
|
|
class MainWindow : public QMainWindow {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget* parent = nullptr);
|
|
~MainWindow();
|
|
void destroy();
|
|
|
|
private:
|
|
void setupUi();
|
|
void setupMenu();
|
|
|
|
QWidget* storageWidget = nullptr;
|
|
QObject* plugin = nullptr;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|