src/InventorySuppliers.h

Sun, 13 Feb 2022 17:24:55 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 13 Feb 2022 17:24:55 +0100
changeset 8
ac4e363c09a7
parent 6
f8474f2c5db9
child 9
85656dc48131
permissions
-rw-r--r--

The table screen is more or less complete.

#ifndef _INVENTORYSPUPPLIERS_H
#define _INVENTORYSPUPPLIERS_H

#include <QDialog>

namespace Ui {
class InventorySuppliers;
}

class InventorySuppliers : public QDialog
{
    Q_OBJECT

public:
    explicit InventorySuppliers(QWidget *parent = nullptr);
    ~InventorySuppliers();

signals:
    void firstWindow();

private slots:
    void on_changeButton_clicked();
    void on_insertButton_clicked();

private:
    Ui::InventorySuppliers *ui;
};

#endif

mercurial