src/ImportBrew.h

Thu, 20 Apr 2023 17:23:44 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 20 Apr 2023 17:23:44 +0200
changeset 496
9db6080a4783
parent 387
7945bf3be1f9
permissions
-rw-r--r--

Fixed recipe editor add yeast crash.

#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