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

22
src/gui/sellerdialog.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef SELLER_DIALOG_H
#define SELLER_DIALOG_H
#include "ui_sellerdialog.h"
#include "sellermodel.h"
#include <QDialog>
class SellerDialog : public QDialog
{
Q_OBJECT
public:
SellerDialog(QWidget* parent = nullptr,
Qt::WindowFlags f = Qt::WindowTitleHint | Qt::WindowSystemMenuHint);
private:
Ui::SellerDialog ui_;
};
#endif