src/AboutDialog.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 6
f8474f2c5db9
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 _ABOUTDIALOG_H
#define _ABOUTDIALOG_H

#include <QDialog>


namespace Ui {
class AboutDialog;
}

class AboutDialog : public QDialog
{
    Q_OBJECT

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

private:
    Ui::AboutDialog *ui;
};

#endif // ABOUTDIALOG_H

mercurial