diff options
author | Merov Linden <merov@lindenlab.com> | 2012-08-29 10:07:55 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-08-29 10:07:55 -0700 |
commit | ca7abc4c3be9310f4e5fec00b7d6ffadaba58ff0 (patch) | |
tree | 507ae1b50f4f703acd33a5f13378fa3775ac8eb4 /indra/newview/llconversationmodel.h | |
parent | ad070b9155e2fddfc746319003253248ceb0eba3 (diff) |
CHUI-280 : Add print out debug methods
Diffstat (limited to 'indra/newview/llconversationmodel.h')
-rw-r--r-- | indra/newview/llconversationmodel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llconversationmodel.h b/indra/newview/llconversationmodel.h index aa79e5aeb0..af3756c45d 100644 --- a/indra/newview/llconversationmodel.h +++ b/indra/newview/llconversationmodel.h @@ -127,6 +127,8 @@ public: bool isLoaded() { return mIsLoaded; } + void dumpDebugData(); + private: bool mIsLoaded; // true if at least one participant has been added to the session, false otherwise }; @@ -143,6 +145,8 @@ public: void setIsMuted(bool is_muted) { mIsMuted = is_muted; } void setIsModerator(bool is_moderator) { mIsModerator = is_moderator; } + void dumpDebugData(); + private: bool mIsMuted; // default is false bool mIsModerator; // default is false |