17 lines
327 B
C
17 lines
327 B
C
|
#ifndef BOTTOMBUTTONGROUP_H
|
||
|
#define BOTTOMBUTTONGROUP_H
|
||
|
|
||
|
#include <QAbstractButton>
|
||
|
#include <QGroupBox>
|
||
|
|
||
|
class BottomButtonGroup : public QGroupBox
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit BottomButtonGroup(QWidget *parent = nullptr);
|
||
|
|
||
|
void addButton(QAbstractButton *button);
|
||
|
};
|
||
|
|
||
|
#endif // BOTTOMBUTTONGROUP_H
|