more on sellerdialog
This commit is contained in:
parent
31d46866f2
commit
207edb27ba
13 changed files with 168 additions and 17 deletions
22
src/gui/sellerdialog.h
Normal file
22
src/gui/sellerdialog.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue