Add JSDoc stubs for new HifiAbout API

This commit is contained in:
David Rowe 2018-05-28 10:40:42 +12:00
parent 38916a3023
commit b31a4d0b64

View file

@ -15,6 +15,17 @@
#include <QObject>
/**jsdoc
* @namespace HifiAbout
*
* @hifi-interface
* @hifi-client-entity
*
* @property {string} buildDate
* @property {string} buildVersion
* @property {string} qtVersion
*/
class AboutUtil : public QObject {
Q_OBJECT
@ -33,6 +44,11 @@ public:
QString qtVersion() const;
public slots:
/**jsdoc
* @function HifiAbout.openUrl
* @param {string} url
*/
void openUrl(const QString &url) const;
private: