mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 10:37:56 +02: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:
|
public slots:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* @function Agent.run
|
* @function Agent.run
|
||||||
|
* @deprecated This function is being removed from the API.
|
||||||
*/
|
*/
|
||||||
void run() override;
|
void run() override;
|
||||||
|
|
||||||
|
|
|
@ -35,16 +35,19 @@ public slots:
|
||||||
|
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* @function Agent.stop
|
* @function Agent.stop
|
||||||
|
* @deprecated This function is being removed from the API.
|
||||||
*/
|
*/
|
||||||
Q_INVOKABLE virtual void stop() { setFinished(true); }
|
Q_INVOKABLE virtual void stop() { setFinished(true); }
|
||||||
|
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* @function Agent.sendStatsPacket
|
* @function Agent.sendStatsPacket
|
||||||
|
* @deprecated This function is being removed from the API.
|
||||||
*/
|
*/
|
||||||
virtual void sendStatsPacket();
|
virtual void sendStatsPacket();
|
||||||
|
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* @function Agent.clearQueuedCheckIns
|
* @function Agent.clearQueuedCheckIns
|
||||||
|
* @deprecated This function is being removed from the API.
|
||||||
*/
|
*/
|
||||||
void clearQueuedCheckIns() { _numQueuedCheckIns = 0; }
|
void clearQueuedCheckIns() { _numQueuedCheckIns = 0; }
|
||||||
|
|
||||||
|
@ -52,6 +55,7 @@ signals:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* @function Agent.finished
|
* @function Agent.finished
|
||||||
* @returns {Signal}
|
* @returns {Signal}
|
||||||
|
* @deprecated This function is being removed from the API.
|
||||||
*/
|
*/
|
||||||
void finished();
|
void finished();
|
||||||
|
|
||||||
|
@ -66,6 +70,7 @@ protected:
|
||||||
protected slots:
|
protected slots:
|
||||||
/**jsdoc
|
/**jsdoc
|
||||||
* @function Agent.domainSettingsRequestFailed
|
* @function Agent.domainSettingsRequestFailed
|
||||||
|
* @deprecated This function is being removed from the API.
|
||||||
*/
|
*/
|
||||||
void domainSettingsRequestFailed();
|
void domainSettingsRequestFailed();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue