src/ImportXML.h

Sun, 15 Jan 2023 14:15:49 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 15 Jan 2023 14:15:49 +0100
changeset 462
1654ff5446c7
parent 288
717140ab5647
permissions
-rw-r--r--

Removed the last bits of equipent calc_volume setting. Changed to the equipment setup screen using suffixes in the fields. Updated the translations.

#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