src/ImportXML.h

Sat, 11 Jun 2022 19:29:20 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 11 Jun 2022 19:29:20 +0200
changeset 276
7316a419334d
parent 275
f472f9773782
child 288
717140ab5647
permissions
-rw-r--r--

Changed import XML method for beer styles using a temporary struct and native database functions. This is the correct method which gives the correct results.

#ifndef _IMPORTXML_H
#define _IMPORTXML_H

#include <QDialog>


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