mirror of
https://github.com/markdavidlong/AppleSAWS.git
synced 2024-09-07 20:54:24 +00:00
31 lines
569 B
C++
31 lines
569 B
C++
#ifndef HEXCONVERTER_H
|
|
#define HEXCONVERTER_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class HexConverter;
|
|
}
|
|
|
|
class HexConverter : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit HexConverter(QWidget *parent = 0);
|
|
~HexConverter();
|
|
|
|
public slots:
|
|
void calcFromNewUint16(QString value);
|
|
void calcFromNewInt16(QString value);
|
|
void calcFromNewHex(QString value);
|
|
void calcFromNewUint8(QString value);
|
|
void calcFromNewInt8(QString value);
|
|
|
|
protected slots:
|
|
private:
|
|
Ui::HexConverter *ui;
|
|
};
|
|
|
|
#endif // HEXCONVERTER_H
|