qt-material-widgets/components/table.h

19 lines
272 B
C++

#ifndef TABLE_H
#define TABLE_H
#include <QTableWidget>
class Table : public QTableWidget
{
Q_OBJECT
public:
explicit Table(QWidget *parent = 0);
~Table();
protected:
bool eventFilter(QObject *obj, QEvent *event) Q_DECL_OVERRIDE;
};
#endif // TABLE_H