mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-08-08 23:23:21 +00:00
8 lines
146 B
C
8 lines
146 B
C
|
|
#pragma once
|
||
|
|
#include <QDialog>
|
||
|
|
|
||
|
|
class AboutDialog : public QDialog {
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit AboutDialog(QWidget *parent = nullptr);
|
||
|
|
};
|