src/ImportBrew.h

Wed, 18 Jan 2023 17:08:25 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 18 Jan 2023 17:08:25 +0100
changeset 466
68ef2cc3e8d2
parent 387
7945bf3be1f9
permissions
-rw-r--r--

Added fields for filename and timestamp.

#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