src/ImportXML.h

Tue, 31 Jan 2023 11:10:14 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 31 Jan 2023 11:10:14 +0100
changeset 481
8a25dbe682eb
parent 288
717140ab5647
permissions
-rw-r--r--

Added valid flag to the inventory_yeastpack table. Initial false and after record edit set to true. This should prevent the use possible wrong values.

#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