mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Deprecate Agent API items that shouldn't be exposed in the API
This commit is contained in:
parent
d20cd6ad44
commit
2669a39e0f
2 changed files with 6 additions and 0 deletions
|
@ -75,6 +75,7 @@ public:
|
|||
public slots:
|
||||
/**jsdoc
|
||||
* @function Agent.run
|
||||
* @deprecated This function is being removed from the API.
|
||||
*/
|
||||
void run() override;
|
||||
|
||||
|
|
|
@ -35,16 +35,19 @@ public slots:
|
|||
|
||||
/**jsdoc
|
||||
* @function Agent.stop
|
||||
* @deprecated This function is being removed from the API.
|
||||
*/
|
||||
Q_INVOKABLE virtual void stop() { setFinished(true); }
|
||||
|
||||
/**jsdoc
|
||||
* @function Agent.sendStatsPacket
|
||||
* @deprecated This function is being removed from the API.
|
||||
*/
|
||||
virtual void sendStatsPacket();
|
||||
|
||||
/**jsdoc
|
||||
* @function Agent.clearQueuedCheckIns
|
||||
* @deprecated This function is being removed from the API.
|
||||
*/
|
||||
void clearQueuedCheckIns() { _numQueuedCheckIns = 0; }
|
||||
|
||||
|
@ -52,6 +55,7 @@ signals:
|
|||
/**jsdoc
|
||||
* @function Agent.finished
|
||||
* @returns {Signal}
|
||||
* @deprecated This function is being removed from the API.
|
||||
*/
|
||||
void finished();
|
||||
|
||||
|
@ -66,6 +70,7 @@ protected:
|
|||
protected slots:
|
||||
/**jsdoc
|
||||
* @function Agent.domainSettingsRequestFailed
|
||||
* @deprecated This function is being removed from the API.
|
||||
*/
|
||||
void domainSettingsRequestFailed();
|
||||
|
||||
|
|
Loading…
Reference in a new issue