Kstars

opsgpg.h
1/*
2 SPDX-FileCopyrightText: 2020 Hy Murveit <hy@murveit.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_opsgpg.h"
10
11class KConfigDialog;
12
13namespace Ekos
14{
15class InternalGuider;
16
17/**
18 * @class OpsGPG
19 *
20 * Enables the user to set Gaussian Process Guider options
21 *
22 * @author Hy Murveit
23 */
24class OpsGPG : public QFrame, public Ui::OpsGPG
25{
27
28 public:
29 explicit OpsGPG(InternalGuider *guiderObject);
30 virtual ~OpsGPG() override = default;
31
32 private slots:
33 void slotApply();
34
35 private:
36 KConfigDialog *m_ConfigDialog { nullptr };
37 InternalGuider *guider { nullptr };
38};
39}
Enables the user to set Gaussian Process Guider options.
Definition opsgpg.h:25
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:78
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:02 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.