From a9347b6ceb194a352ad2a5796e7ed7e8fc598c26 Mon Sep 17 00:00:00 2001 From: MW Date: Sat, 28 Jun 2008 17:43:20 +0000 Subject: Extracted the Avatar appearance functions out of the IUserService interface and moved them into a IAvatarService Although "out of the box", there is no actual functional change to behavior --- OpenSim/Framework/Communications/CommunicationsManager.cs | 7 +++++++ OpenSim/Framework/Communications/IUserService.cs | 10 +++++----- 2 files changed, 12 insertions(+), 5 deletions(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index 0410f0e..45f692b 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs @@ -77,6 +77,13 @@ namespace OpenSim.Framework.Communications // get { return m_transactionsManager; } // } + protected IAvatarService m_avatarService; + + public IAvatarService AvatarService + { + get { return m_avatarService; } + } + protected AssetCache m_assetCache; public AssetCache AssetCache diff --git a/OpenSim/Framework/Communications/IUserService.cs b/OpenSim/Framework/Communications/IUserService.cs index f8ef358..4bd2ad1 100644 --- a/OpenSim/Framework/Communications/IUserService.cs +++ b/OpenSim/Framework/Communications/IUserService.cs @@ -120,14 +120,14 @@ namespace OpenSim.Framework.Communications /// /// Get's the User Appearance - AvatarAppearance GetUserAppearance(LLUUID user); + // AvatarAppearance GetUserAppearance(LLUUID user); - void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); + // void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); - void AddAttachment(LLUUID user, LLUUID attach); + // void AddAttachment(LLUUID user, LLUUID attach); - void RemoveAttachment(LLUUID user, LLUUID attach); + // void RemoveAttachment(LLUUID user, LLUUID attach); - List GetAttachments(LLUUID user); + // List GetAttachments(LLUUID user); } } \ No newline at end of file -- cgit v1.1