mirror of
https://github.com/FAUSheppy/speech-server-client-qt
synced 2025-12-06 00:41:35 +01:00
18 lines
307 B
C++
18 lines
307 B
C++
#ifndef PUSHBUTTONWITHPOSITION_H
|
|
#define PUSHBUTTONWITHPOSITION_H
|
|
|
|
#include <QPushButton>
|
|
|
|
|
|
|
|
class PushButtonWithPosition : public QPushButton
|
|
{
|
|
public:
|
|
PushButtonWithPosition(int row, QString text) : QPushButton(text){
|
|
this->row = row;
|
|
}
|
|
int row;
|
|
};
|
|
|
|
#endif // PUSHBUTTONWITHPOSITION_H
|