src/Webcam.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 391
42936c86cbac
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 _WEBCAM_H
#define _WEBCAM_H

#include "MainWindow.h"

#include <QDialog>
#include <QDialogButtonBox>
#include <QWebEngineView>


namespace Ui {
class Webcam;
}

class Webcam : public QDialog
{
    Q_OBJECT

public:
    explicit Webcam(QString url, QWidget *parent = 0);
    ~Webcam();

private:
    QDialog* dialog;
    void windowClose();
};

#endif

mercurial