File indexing completed on 2024-10-13 03:57:40
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 #include "plugin.hpp" 0008 0009 // own 0010 #include "tool.hpp" 0011 0012 namespace Kodaskanna 0013 { 0014 0015 namespace PlainTextDisplay 0016 { 0017 0018 AbstractDisplayTool *createDisplayTool(QObject *parent) 0019 { 0020 return new Tool(parent); 0021 } 0022 0023 } 0024 }