src/AboutDialog.h

Wed, 04 May 2022 13:49:37 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 04 May 2022 13:49:37 +0200
changeset 194
ea8cce5e7eb9
parent 6
f8474f2c5db9
permissions
-rw-r--r--

Added calcMiscs(). In miscs check supplies. Update inventory check when setting a new brewing salt. Use enum constants to make code more readable.

#ifndef _ABOUTDIALOG_H
#define _ABOUTDIALOG_H

#include <QDialog>


namespace Ui {
class AboutDialog;
}

class AboutDialog : public QDialog
{
    Q_OBJECT

public:
    explicit AboutDialog(QWidget *parent = 0);
    ~AboutDialog();

private:
    Ui::AboutDialog *ui;
};

#endif // ABOUTDIALOG_H

mercurial