#ifndef QBUTTONGROUP_H
#define QBUTTONGROUP_H
#include <QtCore/qobject.h>
typedef enum QtValidLicenseForGuiModule QtGuiModule;
#ifndef QT_NO_BUTTONGROUP
struct QAbstractButton;
struct QAbstractButtonPrivate;
struct QButtonGroupPrivate;
class QButtonGroup: public QObject{
public: virtual struct QMetaObject const * metaObject() const
public: static struct QMetaObject const staticMetaObject;
public: virtual void* qt_metacast(char const *);
public: static inline class QString tr(char const * s, char const * c = 0);
public: static inline class QString trUtf8(char const * s, char const * c = 0);
public: static inline class QString tr(char const * s, char const * c, int n);
public: static inline class QString trUtf8(char const * s, char const * c, int n);
public: virtual int qt_metacall(enum QMetaObject::Call, int, void* *);
public: explicit QButtonGroup(class QObject* parent = 0);
public: virtual ~QButtonGroup();
public: void setExclusive(bool);
public: bool exclusive() const
public: void addButton(struct QAbstractButton*);
public: void addButton(struct QAbstractButton*, int id);
public: void removeButton(struct QAbstractButton*);
public: class QList < struct QAbstractButton* > buttons() const
public: struct QAbstractButton* checkedButton() const
public: struct QAbstractButton* button(int id) const
public: void setId(struct QAbstractButton* button, int id);
public: int id(struct QAbstractButton* button) const
public: int checkedId() const
protected: void buttonClicked(struct QAbstractButton*);
protected: void buttonClicked(int);
protected: void buttonPressed(struct QAbstractButton*);
protected: void buttonPressed(int);
protected: void buttonReleased(struct QAbstractButton*);
protected: void buttonReleased(int);
private: QButtonGroup(class QButtonGroup const &);
private: class QButtonGroup& operator =(class QButtonGroup const &);
private: inline struct QButtonGroupPrivate* d_func();
private: inline struct QButtonGroupPrivate const * d_func() const
friend struct QButtonGroupPrivate;
friend struct QAbstractButton;
friend struct QAbstractButtonPrivate;
};
#endif // QT_NO_BUTTONGROUP
#endif // QBUTTONGROUP_H