Editor dialogs and windows

This commit is contained in:
Andrew 2020-09-10 00:11:33 +07:00
parent 0622e795e4
commit 1bda2c4047
22 changed files with 904 additions and 0 deletions

22
deliverypointeditdialog.h Normal file
View file

@ -0,0 +1,22 @@
#ifndef DELIVERYPOINTEDITDIALOG_H
#define DELIVERYPOINTEDITDIALOG_H
#include <QDialog>
namespace Ui {
class DeliveryPointEditDialog;
}
class DeliveryPointEditDialog : public QDialog
{
Q_OBJECT
public:
explicit DeliveryPointEditDialog(QWidget *parent = nullptr);
~DeliveryPointEditDialog();
private:
Ui::DeliveryPointEditDialog *ui;
};
#endif // DELIVERYPOINTEDITDIALOG_H