| 5 | #include <QtWidgets/QWidget> |
| 6 | |
| 7 | class TableWidget : public QTableWidget { |
| 8 | Q_OBJECT |
| 9 | |
| 10 | public: |
| 11 | explicit TableWidget(QWidget *p = Q_NULLPTR); |
| 12 | |
| 13 | protected: |
| 14 | virtual void dropEvent(QDropEvent *event) Q_DECL_OVERRIDE; |
| 15 | }; |
| 16 | |
| 17 | |
| 18 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected