Files
Qt_DesktopPet/src/reminder/ReminderSoundPlayer.h
T

14 lines
193 B
C++

#pragma once
#include <QSoundEffect>
#include <QString>
class ReminderSoundPlayer
{
public:
void play(const QString &soundId, double volume);
private:
QSoundEffect m_soundEffect;
};