mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-18 17:40:48 +02:00
13 lines
182 B
C
13 lines
182 B
C
|
#ifndef RADIOPUSHBUTTON_H
|
||
|
#define RADIOPUSHBUTTON_H
|
||
|
|
||
|
#include <QPushButton>
|
||
|
|
||
|
class RadioPushButton : public QPushButton
|
||
|
{
|
||
|
public:
|
||
|
RadioPushButton();
|
||
|
};
|
||
|
|
||
|
#endif // RADIOPUSHBUTTON_H
|