src/AboutDialog.h

Mon, 28 Mar 2022 16:54:08 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 28 Mar 2022 16:54:08 +0200
changeset 91
409d9c7214be
parent 6
f8474f2c5db9
permissions
-rw-r--r--

Added websocket connection to the bmsd server. Dropped MQTT, not needed. MySQL and webSockets is enough.

#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