Kstars

modulelogger.h
1/*
2 SPDX-FileCopyrightText: 2023 Wolfgang Reissenberger <sterne-jaeger@openfuture.de>
3
4 Interface defining logging infrastructure for EKOS modules
5 SPDX-FileCopyrightText: 2015 Daniel Leu <daniel_mihai.leu@cti.pub.ro>
6
7 SPDX-License-Identifier: GPL-2.0-or-later
8*/
9
10#pragma once
11
12#include <QString>
13
14namespace Ekos
15{
16class ModuleLogger
17{
18public:
19 /**
20 * @brief appendLogText Append a new line to the logging.
21 */
22 virtual void appendLogText(const QString &) {};
23
24}; // class ModuleLogger
25} // namespace
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:79
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:49:50 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.