1 #ifndef CSV_WIDGET_COMPLETERPOPUP_HPP 2 #define CSV_WIDGET_COMPLETERPOPUP_HPP 3 4 #include <QListView> 5 6 namespace CSVWidget 7 { 8 class CompleterPopup : public QListView 9 { 10 public: 11 CompleterPopup(QWidget *parent = nullptr); 12 13 int sizeHintForRow(int row) const override; 14 }; 15 } 16 17 #endif 18