12345678910111213141516171819 |
- #ifndef QAUDIOOUTPUTEVENT_H
- #define QAUDIOOUTPUTEVENT_H
- #include <QObject>
- #include <QAudioOutput>
- class AudioOutputEvent : public QObject
- {
- Q_OBJECT
- public:
- AudioOutputEvent();
- ~AudioOutputEvent();
- public slots:
- void onStateChanged(QAudio::State);
- };
- #endif // QAUDIOOUTPUTEVENT_H
|