aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGSUserServices.cs
diff options
context:
space:
mode:
authormingchen2007-06-27 16:55:27 +0000
committermingchen2007-06-27 16:55:27 +0000
commite392e222a83ee04ee25c00e26dfad5f47ffa69b8 (patch)
tree03e48283f634b86cc8773d88b42ab849ac999895 /OpenSim/Region/Communications/OGS1/OGSUserServices.cs
parent*Some more restructuring/fixing -- should compile, but high chance I forgot t... (diff)
downloadopensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.zip
opensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.tar.gz
opensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.tar.bz2
opensim-SC_OLD-e392e222a83ee04ee25c00e26dfad5f47ffa69b8.tar.xz
*Added some missing files I forgot to add...OpenSim.sln should compile now
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGSUserServices.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGSUserServices.cs b/OpenSim/Region/Communications/OGS1/OGSUserServices.cs
new file mode 100644
index 0000000..012774d
--- /dev/null
+++ b/OpenSim/Region/Communications/OGS1/OGSUserServices.cs
@@ -0,0 +1,25 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenSim.Framework.Communications;
5using OpenSim.Framework.Data;
6using libsecondlife;
7
8namespace OpenSim.Region.Communications.OGS1
9{
10 public class OGSUserServices :IUserServices
11 {
12 public UserProfileData GetUserProfile(string firstName, string lastName)
13 {
14 return null;
15 }
16 public UserProfileData GetUserProfile(string name)
17 {
18 return null;
19 }
20 public UserProfileData GetUserProfile(LLUUID avatarID)
21 {
22 return null;
23 }
24 }
25}