File indexing completed on 2024-04-28 15:39:19

0001 /*
0002     SPDX-FileCopyrightText: 2022 Friedrich W. H. Kossebau <kossebau@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef KODASKANNA_PLAINTEXTPREVIEW_PLUGIN_HPP
0008 #define KODASKANNA_PLAINTEXTPREVIEW_PLUGIN_HPP
0009 
0010 class QObject;
0011 
0012 namespace Kodaskanna
0013 {
0014 class AbstractDisplayTool;
0015 
0016 namespace PlainTextDisplay
0017 {
0018 
0019 AbstractDisplayTool *createDisplayTool(QObject *parent = nullptr);
0020 
0021 }
0022 }
0023 
0024 #endif