aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/listutils.h
blob: c1fa66d209c8f46759f7b25d243e69e98fa43dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QList>

namespace Utils {

template <class T1, class T2>
QList<T1> qwConvertList(const QList<T2> &list)
{
    QList<T1> convertedList;
    for (T2 listEntry : list) {
        convertedList << qobject_cast<T1>(listEntry);
    }
    return convertedList;
}

} // namespace Utils