diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-03-27 19:05:29 -0700 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-03-27 19:05:29 -0700 |
commit | 473da43c1bbc20245b3a74c1adc7c92f91d25807 (patch) | |
tree | a29a9e6e18d496c6cd195f4c3090db7841c1c997 /indra/newview/llpathfindingcharacter.h | |
parent | 083c81f53f79f53aafdb380a178be081ae461018 (diff) |
Refactoring the characters floater code.
Diffstat (limited to 'indra/newview/llpathfindingcharacter.h')
-rw-r--r-- | indra/newview/llpathfindingcharacter.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/indra/newview/llpathfindingcharacter.h b/indra/newview/llpathfindingcharacter.h index 9b0a7bae30..5be52ebc45 100644 --- a/indra/newview/llpathfindingcharacter.h +++ b/indra/newview/llpathfindingcharacter.h @@ -32,8 +32,12 @@ #include "lluuid.h"
#include "llavatarname.h"
+#include <boost/shared_ptr.hpp>
+
class LLSD;
-class LLAvatarName;
+class LLPathfindingCharacter;
+
+typedef boost::shared_ptr<LLPathfindingCharacter> LLPathfindingCharacterPtr;
class LLPathfindingCharacter
{
@@ -44,12 +48,12 @@ public: LLPathfindingCharacter& operator = (const LLPathfindingCharacter& pOther);
- inline const LLUUID& getUUID() const {return mUUID;};
- inline const std::string& getName() const {return mName;};
- inline const std::string& getDescription() const {return mDescription;};
- inline const std::string getOwnerName() const {return mOwnerName.getCompleteName();};
- inline F32 getCPUTime() const {return mCPUTime;};
- inline const LLVector3& getLocation() const {return mLocation;};
+ inline const LLUUID& getUUID() const {return mUUID;};
+ inline const std::string& getName() const {return mName;};
+ inline const std::string& getDescription() const {return mDescription;};
+ inline const std::string getOwnerName() const {return mOwnerName.getCompleteName();};
+ inline F32 getCPUTime() const {return mCPUTime;};
+ inline const LLVector3& getLocation() const {return mLocation;};
protected:
|