12 lines
244 B
C++
12 lines
244 B
C++
// SPDX-FileCopyrightText: 2023 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
#include "mediamanager.h"
|
|
|
|
void MediaManager::startPlayback()
|
|
{
|
|
Q_EMIT playbackStarted();
|
|
}
|
|
|
|
#include "moc_mediamanager.cpp"
|