File indexing completed on 2024-04-21 05:10:32

0001 /*
0002     This file is part of Akregator.
0003 
0004     SPDX-FileCopyrightText: 2007 Frank Osterfeld <osterfeld@kde.org>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
0007 */
0008 
0009 #include "abstractselectioncontroller.h"
0010 using namespace Akregator;
0011 
0012 AbstractSelectionController::AbstractSelectionController(QObject *parent)
0013     : QObject(parent)
0014 {
0015 }
0016 
0017 AbstractSelectionController::~AbstractSelectionController() = default;
0018 
0019 #include "moc_abstractselectioncontroller.cpp"