mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +00:00
13 lines
180 B
C++
13 lines
180 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QDialog>
|
|
|
|
class AboutDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget * parent);
|
|
};
|