mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 07:49:41 +02:00
Add JSDoc stubs for new HifiAbout API
This commit is contained in:
parent
38916a3023
commit
b31a4d0b64
1 changed files with 16 additions and 0 deletions
|
@ -15,6 +15,17 @@
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
|
/**jsdoc
|
||||||
|
* @namespace HifiAbout
|
||||||
|
*
|
||||||
|
* @hifi-interface
|
||||||
|
* @hifi-client-entity
|
||||||
|
*
|
||||||
|
* @property {string} buildDate
|
||||||
|
* @property {string} buildVersion
|
||||||
|
* @property {string} qtVersion
|
||||||
|
*/
|
||||||
|
|
||||||
class AboutUtil : public QObject {
|
class AboutUtil : public QObject {
|
||||||
|
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
@ -33,6 +44,11 @@ public:
|
||||||
QString qtVersion() const;
|
QString qtVersion() const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
|
/**jsdoc
|
||||||
|
* @function HifiAbout.openUrl
|
||||||
|
* @param {string} url
|
||||||
|
*/
|
||||||
void openUrl(const QString &url) const;
|
void openUrl(const QString &url) const;
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue