File indexing completed on 2024-05-12 04:41:11

0001 /* AtCore KDE Libary for 3D Printers
0002     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0003     SPDX-FileCopyrightText: 2017-2018 Chris Rizzitello <rizzitello@kde.org>
0004 */
0005 
0006 #pragma once
0007 
0008 #include <QDialog>
0009 
0010 #include "atcorewidgets_export.h"
0011 
0012 /**
0013  * @brief An About AtCore dialog.
0014  */
0015 
0016 class ATCOREWIDGETS_EXPORT About : public QDialog
0017 {
0018     Q_OBJECT
0019 public:
0020     explicit About(QWidget *parent = 0);
0021     ~About() = default;
0022 };