src/ImportXML.h

Sat, 22 Jun 2024 11:28:14 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 22 Jun 2024 11:28:14 +0200
changeset 537
48de0f61e5ea
parent 288
717140ab5647
permissions
-rw-r--r--

The iSpindel monitor, detail and chart screens try to use the polynomial calibration data to show the SG. Fallback to already logged data if this fails.

#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