creator-widgets
Phil Taylor 2024-05-05 16:00:13 +01:00
rodzic 838d0d197a
commit 4516f2b82d
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -21,14 +21,14 @@
// Note: When sending \x00, must use QByteArray.setRawData()
icomCommander::icomCommander(QObject* parent) : rigCommander(parent)
icomCommander::icomCommander(rigCommander* parent) : rigCommander(parent)
{
qInfo(logRig()) << "creating instance of icomCommander()";
}
icomCommander::icomCommander(quint8 guid[GUIDLEN], QObject* parent) : rigCommander(parent)
icomCommander::icomCommander(quint8 guid[GUIDLEN], rigCommander* parent) : rigCommander(parent)
{
qInfo(logRig()) << "creating instance of icomCommander() with GUID";
memcpy(this->guid, guid, GUIDLEN);

Wyświetl plik

@ -17,8 +17,8 @@ class icomCommander : public rigCommander
Q_OBJECT
public:
explicit icomCommander(QObject* parent=nullptr);
explicit icomCommander(quint8 guid[GUIDLEN], QObject* parent = nullptr);
explicit icomCommander(rigCommander* parent=nullptr);
explicit icomCommander(quint8 guid[GUIDLEN], rigCommander* parent = nullptr);
~icomCommander();
public slots: