File indexing completed on 2024-05-05 05:38:34

0001 /*
0002     SPDX-FileCopyrightText: 2016 Eike Hein <hein@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #include "concatenatetasksproxymodel.h"
0008 
0009 namespace TaskManager
0010 {
0011 ConcatenateTasksProxyModel::ConcatenateTasksProxyModel(QObject *parent)
0012     : QConcatenateTablesProxyModel(parent)
0013 {
0014 }
0015 
0016 ConcatenateTasksProxyModel::~ConcatenateTasksProxyModel()
0017 {
0018 }
0019 
0020 QModelIndex ConcatenateTasksProxyModel::mapIfaceToSource(const QModelIndex &index) const
0021 {
0022     return mapToSource(index);
0023 }
0024 
0025 }