src/ImportBrew.h

Mon, 09 Jan 2023 17:03:19 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 09 Jan 2023 17:03:19 +0100
changeset 452
c4c5d02131be
parent 387
7945bf3be1f9
permissions
-rw-r--r--

Limit mash steptime to 240 minutes. Limit mash steps to 82 degrees celsius. In estimate_fg limit total mash time to 240 minutes and increased the water/grain ration from 5.5 to 6 l/kg.

#ifndef _IMPORTBREW_H
#define _IMPORTBREW_H

#include <QDialog>
#include <QJsonDocument>

namespace Ui {
class ImportBrew;
}

class ImportBrew : public QDialog
{
    Q_OBJECT

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

private slots:
    void on_openButton_clicked();

private:
    Ui::ImportBrew *ui;

    void WindowTitle();
};

#endif

mercurial