Kstars

eclipsehandler.cpp
1 /*
2  SPDX-FileCopyrightText: 2018 Valentin Boettcher <[email protected]>
3 
4  SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #include "eclipsehandler.h"
8 
9 EclipseEvent::EclipseEvent(long double jd, GeoLocation geoPlace, ECLIPSE_TYPE type) : QObject(),
10  m_type { type }, m_geoPlace { geoPlace }, m_jd { jd }
11 {
12  qRegisterMetaType<EclipseEvent_s>("EclipseEvent_s");
13 }
14 
15 EclipseEvent::~EclipseEvent()
16 {
17 
18 }
19 
20 EclipseHandler::EclipseHandler(QObject * parent) : ApproachSolver (parent)
21 {
22 }
23 
24 EclipseHandler::~EclipseHandler()
25 {
26 
27 }
Type type(const QSqlDatabase &db)
Implements algorithms to find close approaches of two objects on the sky. A class that implements a m...
Relevant data about an observing location on Earth.
Definition: geolocation.h:27
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sun Dec 3 2023 04:06:15 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.