Deprecate Agent API items that shouldn't be exposed in the API

This commit is contained in:
David Rowe 2018-05-18 07:32:25 +12:00
parent d20cd6ad44
commit 2669a39e0f
2 changed files with 6 additions and 0 deletions

View file

@ -75,6 +75,7 @@ public:
public slots:
/**jsdoc
* @function Agent.run
* @deprecated This function is being removed from the API.
*/
void run() override;

View file

@ -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();