Kstars

eclipsehandler.cpp
1/*
2 SPDX-FileCopyrightText: 2018 Valentin Boettcher <valentin@boettcher.cf>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#include "eclipsehandler.h"
8
9EclipseEvent::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
15EclipseEvent::~EclipseEvent()
16{
17
18}
19
20EclipseHandler::EclipseHandler(QObject * parent) : ApproachSolver (parent)
21{
22}
23
24EclipseHandler::~EclipseHandler()
25{
26
27}
Implements algorithms to find close approaches of two objects on the sky.
Contains all relevant information for specifying a location on Earth: City Name, State/Province name,...
Definition geolocation.h:28
Type type(const QSqlDatabase &db)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:04 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.