aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications.OGS1/OGSUserServices.cs
blob: ff5fbbbfb42519da7ffe606491973cc844989ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Communications;
using OpenSim.Framework.Data;
using libsecondlife;

namespace OpenSim.Framework.Communications.OGS1
{
    public class OGSUserServices :IUserServices
    {
        public UserProfileData GetUserProfile(string firstName, string lastName)
        {
            return null;
        }
        public UserProfileData GetUserProfile(string name)
        {
            return null;
        }
        public UserProfileData GetUserProfile(LLUUID avatarID)
        {
            return null;
        }
    }
}