19 lines
283 B
C++
19 lines
283 B
C++
#ifndef PLAYWAVESOUND_H
|
|
#define PLAYWAVESOUND_H
|
|
|
|
#include <QObject>
|
|
#include "global.h"
|
|
|
|
class PlayWaveSound : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PlayWaveSound(QObject *parent = nullptr);
|
|
~PlayWaveSound();
|
|
void Init();
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // PLAYWAVESOUND_H
|