File indexing completed on 2024-04-21 03:44:27

0001 /*
0002     SPDX-FileCopyrightText: 2022 Hy Murveit <hy@murveit.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "ui_opsdeveloper.h"
0010 
0011 #include <kconfigdialog.h>
0012 
0013 class KStars;
0014 
0015 /**
0016  * @class OpsDeveloper
0017  *
0018  * The Developer Tab of the Options window.  In this Tab the user can configure
0019  * options mostly relevant for developers.
0020  *
0021  * @author Hy Murveit
0022  * @version 1.0
0023  */
0024 class OpsDeveloper : public QFrame, public Ui::OpsDeveloper
0025 {
0026     Q_OBJECT
0027 
0028   public:
0029     explicit OpsDeveloper();
0030 
0031     ~OpsDeveloper() override = default;
0032 };