Download this file

vw.h    18 lines (15 with data), 393 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#ifndef _VW_H_INCLUDED_
#define _VW_H_INCLUDED_
#include <iostream>
#include <QWidget>
class TestReceiver : public QWidget {
Q_OBJECT
public slots:
void onVolumeChanged(int value) {
std::cerr << "Volume Changed: " << value << std::endl;
}
void onMuteChanged(bool value) {
std::cerr << "Mute Changed: " << value << std::endl;
}
};
#endif /* _VW_H_INCLUDED_ */