mirror of
https://github.com/lubosz/overte.git
synced 2025-04-26 17:15:37 +02:00
added jsdoc comments
This commit is contained in:
parent
ea55df48ca
commit
b8b3c21c89
1 changed files with 20 additions and 0 deletions
|
@ -46,8 +46,28 @@ public slots:
|
|||
QVariantMap getBookmarks() { return _bookmarks; }
|
||||
|
||||
signals:
|
||||
/**jsdoc
|
||||
* Notifies about avatar bookmark loading
|
||||
* @function AvatarBookmarks.bookmarkLoaded
|
||||
* @param {string} bookmarkName
|
||||
* @returns {Signal}
|
||||
*/
|
||||
void bookmarkLoaded(const QString& bookmarkName);
|
||||
|
||||
/**jsdoc
|
||||
* Notifies about avatar bookmark removal
|
||||
* @function AvatarBookmarks.bookmarkDeleted
|
||||
* @param {string} bookmarkName
|
||||
* @returns {Signal}
|
||||
*/
|
||||
void bookmarkDeleted(const QString& bookmarkName);
|
||||
|
||||
/**jsdoc
|
||||
* Notifies about avatar bookmark adding
|
||||
* @function AvatarBookmarks.bookmarkAdded
|
||||
* @param {string} bookmarkName
|
||||
* @returns {Signal}
|
||||
*/
|
||||
void bookmarkAdded(const QString& bookmarkName);
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Reference in a new issue