diff options
author | James Cook <james@lindenlab.com> | 2010-04-20 17:05:49 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-04-20 17:05:49 -0700 |
commit | 022a598694cd37bebff3322054324c7d27afd5ff (patch) | |
tree | 81fbb61a86ee00c8b3287eaedd7da2af39da188f /indra/llcommon/llavatarname.h | |
parent | 257c3ed2a3747256500f704f6e06e7631af3c08e (diff) |
Viewer caches avatar display names between sessions
Reviewed with Simon
Diffstat (limited to 'indra/llcommon/llavatarname.h')
-rw-r--r-- | indra/llcommon/llavatarname.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/indra/llcommon/llavatarname.h b/indra/llcommon/llavatarname.h index 72e2980b5c..11bd5f30b7 100644 --- a/indra/llcommon/llavatarname.h +++ b/indra/llcommon/llavatarname.h @@ -36,13 +36,19 @@ #include <string> +class LLSD; + class LL_COMMON_API LLAvatarName { public: LLAvatarName(); - + bool operator<(const LLAvatarName& rhs) const; + LLSD asLLSD() const; + + void fromLLSD(const LLSD& sd); + // "bobsmith123" or "james.linden", US-ASCII only std::string mSLID; |