qt-material-widgets/components/tab.h

19 lines
248 B
C
Raw Normal View History

2016-03-19 10:51:17 +00:00
#ifndef TAB_H
#define TAB_H
#include "flatbutton.h"
class QWidget;
class Tab : public FlatButton
{
Q_OBJECT
public:
explicit Tab(QWidget *parent = 0);
explicit Tab(QString text, QWidget *parent = 0);
~Tab();
};
#endif // TAB_H