File indexing completed on 2024-05-05 04:50:59

0001 /*
0002     SPDX-FileCopyrightText: 2004-2009 Sebastian Trueg <trueg@k3b.org>
0003     SPDX-FileCopyrightText: 1998-2009 Sebastian Trueg <trueg@k3b.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 #include "k3bprojectplugin.h"
0008 #include "k3b_i18n.h"
0009 
0010 K3b::ProjectPlugin::ProjectPlugin( Type type, bool gui, QObject* parent )
0011   : K3b::Plugin( parent ),
0012     m_type(type),
0013     m_hasGUI(gui)
0014 {
0015 }
0016 
0017 
0018 QString K3b::ProjectPlugin::categoryName() const
0019 {
0020     return i18nc( "plugin type", "Project plugin" );
0021 }
0022 
0023 #include "moc_k3bprojectplugin.cpp"