Allow selection of different level 2 products

This commit is contained in:
Dan Paulat 2021-11-05 22:58:53 -05:00
parent 7c606b85ff
commit 951710dcfe
9 changed files with 174 additions and 60 deletions

View file

@ -20,6 +20,8 @@ class MainWindow : public QMainWindow
{
Q_OBJECT
friend class MainWindowImpl;
public:
MainWindow(QWidget* parent = nullptr);
~MainWindow();
@ -27,7 +29,8 @@ public:
void showEvent(QShowEvent* event) override;
private:
Ui::MainWindow* ui;
std::unique_ptr<MainWindowImpl> p;
Ui::MainWindow* ui;
};
} // namespace main