fixed spacing issue

This commit is contained in:
milad nazeri 2018-04-24 13:14:55 -07:00
parent 1121fe8da0
commit 23d07fa292
18 changed files with 926 additions and 928 deletions

View file

@ -16,8 +16,8 @@
#include "Bookmarks.h" #include "Bookmarks.h"
/**jsdoc /**jsdoc
* This API helps manage adding and deleting Avatar bookmarks * This API helps manage adding and deleting Avatar bookmarks
*/ */
class AvatarBookmarks: public Bookmarks, public Dependency { class AvatarBookmarks: public Bookmarks, public Dependency {
Q_OBJECT Q_OBJECT
@ -28,13 +28,13 @@ public:
void setupMenus(Menu* menubar, MenuWrapper* menu) override; void setupMenus(Menu* menubar, MenuWrapper* menu) override;
/**jsdoc /**jsdoc
* Add the current Avatar to your Avatar Bookmarks * Add the current Avatar to your Avatar Bookmarks
* @function AvatarBookmarks.addBookMark * @function AvatarBookmarks.addBookMark
*/ */
/**jsdoc /**jsdoc
* @function AvatarBookmarks.deleteBookMark * @function AvatarBookmarks.deleteBookMark
*/ */
public slots: public slots:
void addBookmark(); void addBookmark();

View file

@ -1,4 +1,4 @@
// //
// Bookmarks.h // Bookmarks.h
// interface/src // interface/src
// //

View file

@ -10,9 +10,9 @@
// //
/**jsdoc /**jsdoc
* The LOD class manages your Level of Detail functions within interface * The LOD class manages your Level of Detail functions within interface
* @namespace LODManager * @namespace LODManager
*/ */
#ifndef hifi_LODManager_h #ifndef hifi_LODManager_h
#define hifi_LODManager_h #define hifi_LODManager_h

View file

@ -28,9 +28,9 @@
#include "MyAvatar.h" #include "MyAvatar.h"
/**jsdoc /**jsdoc
* The AvatarManager API has properties and methods which manage Avatars within the same domain. * The AvatarManager API has properties and methods which manage Avatars within the same domain.
* @namespace AvatarManager * @namespace AvatarManager
*/ */
class AvatarManager : public AvatarHashMap { class AvatarManager : public AvatarHashMap {
Q_OBJECT Q_OBJECT
@ -185,7 +185,6 @@ public:
const QScriptValue& avatarIdsToInclude = QScriptValue(), const QScriptValue& avatarIdsToInclude = QScriptValue(),
const QScriptValue& avatarIdsToDiscard = QScriptValue()); const QScriptValue& avatarIdsToDiscard = QScriptValue());
/**jsdoc /**jsdoc
* To Be Completed
* @function AvatarManager.findRayIntersectionVector * @function AvatarManager.findRayIntersectionVector
* @param {PickRay} ray * @param {PickRay} ray
* @param {} avatarsToInclude * @param {} avatarsToInclude

View file

@ -27,9 +27,9 @@
#include <trackers/FaceTracker.h> #include <trackers/FaceTracker.h>
/**jsdoc /**jsdoc
* The FaceTracker API helps manage facial tracking hardware. * The FaceTracker API helps manage facial tracking hardware.
* @namespace FaceTracker * @namespace FaceTracker
*/ */
class DdeFaceTracker : public FaceTracker, public Dependency { class DdeFaceTracker : public FaceTracker, public Dependency {
Q_OBJECT Q_OBJECT

View file

@ -16,9 +16,9 @@
#include <DependencyManager.h> #include <DependencyManager.h>
/**jsdoc /**jsdoc
* The GooglePoly API allows you to interact with Google Poly models direct from inside High Fidelity. * The GooglePoly API allows you to interact with Google Poly models direct from inside High Fidelity.
* @namespace GooglePoly * @namespace GooglePoly
*/ */
class GooglePolyScriptingInterface : public QObject, public Dependency { class GooglePolyScriptingInterface : public QObject, public Dependency {
Q_OBJECT Q_OBJECT

View file

@ -21,9 +21,9 @@
#include <ResourceCache.h> #include <ResourceCache.h>
/**jsdoc /**jsdoc
* API to manage Animation Cache resources * API to manage Animation Cache resources
* @namespace AnimationCache * @namespace AnimationCache
*/ */
class Animation; class Animation;

View file

@ -17,9 +17,9 @@
#include "Sound.h" #include "Sound.h"
/**jsdoc /**jsdoc
* API to manage Sound Cache resources * API to manage Sound Cache resources
* @namespace SoundCache * @namespace SoundCache
*/ */
/// Scriptable interface for sound loading. /// Scriptable interface for sound loading.
@ -91,7 +91,6 @@ public:
*/ */
/**jsdoc /**jsdoc
* To Be Completed
* @param {number} deltaSize * @param {number} deltaSize
* @function SoundCache.updateTotalSize * @function SoundCache.updateTotalSize
* @returns {Resource} * @returns {Resource}

View file

@ -31,9 +31,9 @@
#include "AvatarData.h" #include "AvatarData.h"
/**jsdoc /**jsdoc
* The AvatarHashMap API deals with functionality related to Avatar information and connectivity * The AvatarHashMap API deals with functionality related to Avatar information and connectivity
* @namespace AvatarHashMap * @namespace AvatarHashMap
*/ */
// JSDoc 3.5.5 doesn't augment @property definitions. // JSDoc 3.5.5 doesn't augment @property definitions.
// These functions are being copied into Avatar classes which inherit the AvatarHashMap // These functions are being copied into Avatar classes which inherit the AvatarHashMap

View file

@ -138,9 +138,9 @@ using NetworkTexturePointer = QSharedPointer<NetworkTexture>;
Q_DECLARE_METATYPE(QWeakPointer<NetworkTexture>) Q_DECLARE_METATYPE(QWeakPointer<NetworkTexture>)
/**jsdoc /**jsdoc
* API to manage Texture Cache resources * API to manage Texture Cache resources
* @namespace TextureCache * @namespace TextureCache
*/ */
/// Stores cached textures, including render-to-texture targets. /// Stores cached textures, including render-to-texture targets.
class TextureCache : public ResourceCache, public Dependency { class TextureCache : public ResourceCache, public Dependency {