qt-material-widgets/__old/components/table.h

19 lines
262 B
C
Raw Normal View History

2017-09-29 14:26:27 +00:00
#ifndef TABLE_H
#define TABLE_H
#include <QTableWidget>
class Table : public QTableWidget
{
Q_OBJECT
public:
explicit Table(QWidget *parent = 0);
~Table();
protected:
void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
};
#endif // TABLE_H