mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-06-14 04:19:25 +00:00
24 lines
353 B
C++
24 lines
353 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 cleanup();
|
|
|
|
private:
|
|
void setupUi();
|
|
void setupMenu();
|
|
|
|
QWidget* storageWidget = nullptr;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|