more on sellerdialog

This commit is contained in:
Martin Brodbeck 2018-07-16 12:00:17 +02:00
parent 31d46866f2
commit 207edb27ba
13 changed files with 168 additions and 17 deletions

View file

@ -1,9 +1,10 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "ui_mainwindow.h"
#include <marketplace.h>
#include "ui_mainwindow.h"
#include <QMainWindow>
#include <memory>
@ -14,8 +15,11 @@ class MainWindow : public QMainWindow
public:
MainWindow();
Marketplace* getMarketplace() {return marketplace_.get();}
private:
void on_actionEditSeller_triggered();
Ui::MainWindow ui_;
std::unique_ptr<Marketplace> marketplace_;
};