tools/hwmap2txt/hwmapconverter/mainwindow.h
author nemo
Thu, 20 Apr 2017 11:22:29 -0400
changeset 12294 0deabf747b8f
parent 11015 7a905f0070ce
permissions -rw-r--r--
For testing purposes, drop tointeger and pushint since Lua uses ptrdiff causing inconsistent behaviour if we try to get a longword value from tointeger on 64 bit vs 32bit. This should improve script reliability a bit

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

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

private slots:
    void on_pbLoad_clicked();

    void on_pbSave_clicked();

private:
    Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H