mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-06-14 12:29:26 +00:00
25 lines
336 B
C++
25 lines
336 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();
|
|
|
|
private:
|
|
QWidget *storageWidget = nullptr;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|