ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
AboutDialog.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #pragma once
9 
10 #include <QDialog>
11 
12 class Ui_AboutDialog;
13 
14 class AboutDialog final : public QDialog
15 {
16  public:
17  explicit AboutDialog(QWidget *parent = nullptr);
18 
19  ~AboutDialog() noexcept override;
20 
21  private:
22  Ui_AboutDialog *m_dlg;
23 };
~AboutDialog() noexcept override
Definition: AboutDialog.cpp:34
AboutDialog(QWidget *parent=nullptr)
Definition: AboutDialog.cpp:17