Initial, placeholder JSDoc for Uuid

This commit is contained in:
David Rowe 2017-11-12 12:02:58 +13:00
parent 9d9f684af5
commit a2ece7a3ad

View file

@ -17,6 +17,13 @@
#include <QUuid>
#include <QtScript/QScriptable>
/**jsdoc
* A UUID. Represented in JavaScript as a string in the format, <code>{00000000-0000-0000-0000-000000000000}</code>.
* Used to uniquely identify entities, overlays, avatars, and the like.
*
* @typedef Uuid
*/
/// Scriptable interface for a UUID helper class object. Used exclusively in the JavaScript API
class ScriptUUID : public QObject, protected QScriptable {
Q_OBJECT