File indexing completed on 2024-05-05 16:16:35

0001 /*
0002     SPDX-FileCopyrightText: 2013 David Edmundson <davidedmundson@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #include "abstractfieldwidgetfactory.h"
0008 
0009 using namespace KPeople;
0010 
0011 AbstractFieldWidgetFactory::AbstractFieldWidgetFactory(QObject *parent)
0012     : QObject(parent)
0013 {
0014 }
0015 
0016 AbstractFieldWidgetFactory::~AbstractFieldWidgetFactory()
0017 {
0018 }
0019 
0020 #include "moc_abstractfieldwidgetfactory.cpp"