diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-04-29 07:43:28 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-04-29 07:56:09 +0300 |
commit | 1b68f71348ecf3983b76b40d7940da8377f049b7 (patch) | |
tree | 2974eddaef130a067c26033d60a59fc790365b3d /indra/newview/llpathfindingnavmeshstatus.h | |
parent | af4ea94efc1999f3b19fd8d643d0331f0b77e265 (diff) |
#824 Process source files in bulk: replace tabs with spaces, convert CRLF to LF, and trim trailing whitespaces as needed
Diffstat (limited to 'indra/newview/llpathfindingnavmeshstatus.h')
-rw-r--r-- | indra/newview/llpathfindingnavmeshstatus.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/indra/newview/llpathfindingnavmeshstatus.h b/indra/newview/llpathfindingnavmeshstatus.h index 74533fa484..e429d13a3f 100644 --- a/indra/newview/llpathfindingnavmeshstatus.h +++ b/indra/newview/llpathfindingnavmeshstatus.h @@ -1,4 +1,4 @@ -/** +/** * @file llpathfindingnavmeshstatus.h * @brief Header file for llpathfindingnavmeshstatus * @author Stinson@lindenlab.com @@ -36,42 +36,42 @@ class LLSD; class LLPathfindingNavMeshStatus { public: - typedef enum - { - kPending, - kBuilding, - kComplete, - kRepending - } ENavMeshStatus; + typedef enum + { + kPending, + kBuilding, + kComplete, + kRepending + } ENavMeshStatus; - LLPathfindingNavMeshStatus(); - LLPathfindingNavMeshStatus(const LLUUID &pRegionUUID); - LLPathfindingNavMeshStatus(const LLUUID &pRegionUUID, const LLSD &pContent); - LLPathfindingNavMeshStatus(const LLSD &pContent); - LLPathfindingNavMeshStatus(const LLPathfindingNavMeshStatus &pOther); - virtual ~LLPathfindingNavMeshStatus(); + LLPathfindingNavMeshStatus(); + LLPathfindingNavMeshStatus(const LLUUID &pRegionUUID); + LLPathfindingNavMeshStatus(const LLUUID &pRegionUUID, const LLSD &pContent); + LLPathfindingNavMeshStatus(const LLSD &pContent); + LLPathfindingNavMeshStatus(const LLPathfindingNavMeshStatus &pOther); + virtual ~LLPathfindingNavMeshStatus(); - LLPathfindingNavMeshStatus &operator =(const LLPathfindingNavMeshStatus &pOther); + LLPathfindingNavMeshStatus &operator =(const LLPathfindingNavMeshStatus &pOther); - bool isValid() const {return mIsValid;}; - const LLUUID &getRegionUUID() const {return mRegionUUID;}; - U32 getVersion() const {return mVersion;}; - ENavMeshStatus getStatus() const {return mStatus;}; + bool isValid() const {return mIsValid;}; + const LLUUID &getRegionUUID() const {return mRegionUUID;}; + U32 getVersion() const {return mVersion;}; + ENavMeshStatus getStatus() const {return mStatus;}; protected: private: - void parseStatus(const LLSD &pContent); + void parseStatus(const LLSD &pContent); - bool mIsValid; - LLUUID mRegionUUID; - U32 mVersion; - ENavMeshStatus mStatus; + bool mIsValid; + LLUUID mRegionUUID; + U32 mVersion; + ENavMeshStatus mStatus; - static const std::string sStatusPending; - static const std::string sStatusBuilding; - static const std::string sStatusComplete; - static const std::string sStatusRepending; + static const std::string sStatusPending; + static const std::string sStatusBuilding; + static const std::string sStatusComplete; + static const std::string sStatusRepending; }; #endif // LL_LLPATHFINDINGNAVMESHSTATUS_H |