src/ImportXML.h

Sun, 30 Oct 2022 16:43:22 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 30 Oct 2022 16:43:22 +0100
changeset 429
4aac0b672667
parent 288
717140ab5647
permissions
-rw-r--r--

In the product equipment tab show the volume to the fermenter. Changed some prompts and suffixes in that tab. Updated translations.

#ifndef _IMPORTXML_H
#define _IMPORTXML_H

#include <QDialog>
#include <QJsonDocument>

namespace Ui {
class ImportXML;
}

class ImportXML : public QDialog
{
    Q_OBJECT

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

private slots:
    void on_openButton_clicked();

private:
    Ui::ImportXML *ui;

    void WindowTitle();
};

#endif

mercurial