diff options
Diffstat (limited to '')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/IUserServices.cs (renamed from Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerOGS.cs) | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerOGS.cs b/Common/OpenGrid.Framework.Communications/IUserServices.cs index 615bb2d..9eed195 100644 --- a/Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerOGS.cs +++ b/Common/OpenGrid.Framework.Communications/IUserServices.cs | |||
@@ -28,10 +28,14 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Text; | 30 | using System.Text; |
31 | using libsecondlife; | ||
31 | 32 | ||
32 | namespace OpenGrid.Framework.Communications.UserServer | 33 | namespace OpenGrid.Framework.Communications |
33 | { | 34 | { |
34 | public class UserCommsManagerOGS : UserCommsManagerBase | 35 | public interface IUserServices |
35 | { | 36 | { |
37 | void GetUserProfile(string name); | ||
38 | void GetUserProfile(LLUUID avatar_id); //should be returning UserProfile | ||
39 | |||
36 | } | 40 | } |
37 | } | 41 | } |