Warning, file /graphics/kodaskanna/src/widgets/abstractsourcetool.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 "abstractsourcetool.hpp"
0008 
0009 namespace Kodaskanna
0010 {
0011 
0012 AbstractSourceTool::AbstractSourceTool(QObject *parent)
0013     : QObject(parent)
0014 {
0015 }
0016 
0017 AbstractSourceTool::~AbstractSourceTool() = default;
0018 
0019 }