src/InventoryYeasts.h

Thu, 24 Feb 2022 13:42:54 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 24 Feb 2022 13:42:54 +0100
changeset 26
dfc4df8f9632
parent 25
a9da2744609e
child 44
5a9a159c2d34
permissions
-rw-r--r--

Added protection against wrong dry yeast pitchrates.

#ifndef _INVENTORYYEASTS_H
#define _INVENTORYYEASTS_H

#include <QDialog>

namespace Ui {
class InventoryYeasts;
}

class InventoryYeasts : public QDialog
{
    Q_OBJECT

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

signals:
    void firstWindow();

private slots:
    void on_quitButton_clicked();
    void on_insertButton_clicked();
    void on_editButton_clicked();
    void refreshTable(void);

private:
    Ui::InventoryYeasts *ui;
    void edit(int recno);
};

#endif

mercurial