src/ImportBrew.h

Sun, 20 Aug 2023 11:40:51 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 20 Aug 2023 11:40:51 +0200
changeset 501
a01ae5ff0e96
parent 387
7945bf3be1f9
permissions
-rw-r--r--

New battery percentage formula for iSpindel in chart.

#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