@@ -73,7 +73,6 @@ class HEARTSHARED_EXPORT AbstractNodeInfo: public QObject
73
73
*/
74
74
AbstractNodeInfo (QAbstractSocket *sct = nullptr ,
75
75
const HostAddress* address = nullptr );
76
-
77
76
/* *
78
77
* @brief ~AbstractNodeInfo
79
78
*/
@@ -206,19 +205,19 @@ public slots:
206
205
* @brief sigConnected This is wrapper signal for the QAbstractSocket::connetced signal.
207
206
* @param thisNode This is pointer to current object.
208
207
*/
209
- void sigConnected (AbstractNodeInfo* thisNode);
208
+ void sigConnected (QH:: AbstractNodeInfo* thisNode);
210
209
211
210
/* *
212
211
* @brief sigDisconnected This is wrapper signal for the QAbstractSocket::disconnected signal.
213
212
* @param thisNode This is pointer to current object.
214
213
*/
215
- void sigDisconnected (AbstractNodeInfo* thisNode);
214
+ void sigDisconnected (QH:: AbstractNodeInfo* thisNode);
216
215
217
216
/* *
218
217
* @brief sigReadyRead This is wrapper signal for the QAbstractSocket::readyRead signal.
219
218
* @param thisNode This is pointer to current object.
220
219
*/
221
- void sigReadyRead (AbstractNodeInfo* thisNode);
220
+ void sigReadyRead (QH:: AbstractNodeInfo* thisNode);
222
221
223
222
/* *
224
223
* @brief sigErrorOccurred This is wrapper signal for the QAbstractSocket::errorOccurred signal.
@@ -227,22 +226,22 @@ public slots:
227
226
* @param message This is a error string message.
228
227
* For more information see the QAbstractSocket::SocketError enum class.
229
228
*/
230
- void sigErrorOccurred (AbstractNodeInfo* thisNode,
229
+ void sigErrorOccurred (QH:: AbstractNodeInfo* thisNode,
231
230
QAbstractSocket::SocketError socketError,
232
231
QString message);
233
232
234
233
/* *
235
234
* @brief sigConfirmed This signal emitted when node is confirmnd. The confirm status sets in the confirmData method.
236
235
* @param thisNode This is pointer to current object.
237
236
*/
238
- void sigConfirmed (AbstractNodeInfo* thisNode);
237
+ void sigConfirmed (QH:: AbstractNodeInfo* thisNode);
239
238
240
239
/* *
241
240
* @brief statusChaned This signal emitted when nodes status is changed.
242
241
* @param thisNode This is pointer to current object.
243
242
* @param status This is status of node. For more information see the NodeCoonectionStatus enum.
244
243
*/
245
- void statusChaned (AbstractNodeInfo* thisNode, NodeCoonectionStatus status);
244
+ void statusChaned (QH:: AbstractNodeInfo* thisNode, QH:: NodeCoonectionStatus status);
246
245
247
246
protected:
248
247
0 commit comments