diff options
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerBase.cs')
-rw-r--r-- | Common/OpenGrid.Framework.Communications/UserServer/UserCommsManagerBase.cs | 30 |
1 files changed, 30 insertions, 0 deletions
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | using libsecondlife; | ||
6 | namespace OpenGrid.Framework.Communications.UserServer | ||
7 | { | ||
8 | public class UserCommsManagerBase | ||
9 | { | ||
10 | public UserCommsManagerBase() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | public virtual UserProfileData GetUserProfile(string name) | ||
15 | { | ||
16 | return null; | ||
17 | } | ||
18 | public virtual UserProfileData GetUserProfile(LLUUID avatar_id) | ||
19 | { | ||
20 | return null; | ||
21 | } | ||
22 | } | ||
23 | |||
24 | public class UserProfileData | ||
25 | { | ||
26 | public UserProfileData() | ||
27 | { | ||
28 | } | ||
29 | } | ||
30 | } | ||