From fa8f143aec69e36ee90fb34e2f144733b66ca951 Mon Sep 17 00:00:00 2001 From: mingchen Date: Sat, 9 Jun 2007 21:04:13 +0000 Subject: *Reorganized RegionServerCommsManager for OGS and local support --- .../UserServer/UserCommsManagerBase.cs | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerBase.cs (limited to 'Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerBase.cs') diff --git a/Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerBase.cs b/Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerBase.cs new file mode 100644 index 0000000..9ea4ae8 --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerBase.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Text; + +using libsecondlife; +namespace OpenGrid.Framework.Communications.UserServer +{ + public class UserCommsManagerBase + { + public UserCommsManagerBase() + { + } + + public virtual UserProfileData GetUserProfile(string name) + { + return null; + } + public virtual UserProfileData GetUserProfile(LLUUID avatar_id) + { + return null; + } + } + + public class UserProfileData + { + public UserProfileData() + { + } + } +} -- cgit v1.1