To answer your question of where to add it:
#ifndef BYTECONVERTERDIALOG_H
#define BYTECONVERTERDIALOG_H
#include <QDialog>
class byteConverterDialog
: public QDialog{
Q_OBJECT
public:
byteConverterDialog();
private:
// <----------Here.
};
#endif // BYTECONVERTERDIALOG_H
#ifndef BYTECONVERTERDIALOG_H
#define BYTECONVERTERDIALOG_H
#include <QDialog>
class byteConverterDialog : public QDialog
{
Q_OBJECT
public:
byteConverterDialog();
private:
// <----------Here.
};
#endif // BYTECONVERTERDIALOG_H
To copy to clipboard, switch view to plain text mode
Bookmarks