File indexing completed on 2024-05-12 16:21:17

0001 // SPDX-FileCopyrightText: 2021 Jonah BrĂ¼chert <jbb@kaidan.im>
0002 //
0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 
0005 #pragma once
0006 
0007 #include <vector>
0008 
0009 class QString;
0010 namespace meta {
0011 struct Artist;
0012 }
0013 
0014 namespace PlaylistUtils {
0015     QString artistsToString(const std::vector<meta::Artist> &artists);
0016 };