16 lines
241 B
C++
16 lines
241 B
C++
#ifndef PLAYBUTTON_H
|
|
#define PLAYBUTTON_H
|
|
|
|
#include <QPushButton>
|
|
|
|
class PlayButton : public QPushButton
|
|
{
|
|
public:
|
|
PlayButton(QWidget* parent = 0);
|
|
private:
|
|
QString play_text;
|
|
QString pause_text;
|
|
};
|
|
|
|
#endif // PLAYBUTTON_H
|