aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
blob: 45188c140674272b5122c9a660ccd92ae1fdae50 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System.Collections.Generic;
using libsecondlife;
using OpenSim.Framework.Communications;
using OpenSim.Framework.Data;
using InventoryFolder = OpenSim.Framework.Communications.Caches.InventoryFolder;


namespace OpenSim.Region.Communications.OGS1
{
    public class OGS1InventoryService : IInventoryServices
    {

        public OGS1InventoryService()
        {

        }

        #region IInventoryServices Members
       
        public void RequestInventoryForUser(LLUUID userID, InventoryFolderInfo folderCallBack, InventoryItemInfo itemCallBack)
        {
            
        }

        public void AddNewInventoryFolder(LLUUID userID, InventoryFolder folder)
        {
            
        }

        public void AddNewInventoryItem(LLUUID userID, InventoryItemBase item)
        {
            
        }

        public void DeleteInventoryItem(LLUUID userID, InventoryItemBase item)
        {
            
        }

        public void CreateNewUserInventory(LLUUID user)
        {
            
        }

        public List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID)
        {
            return new List<InventoryFolderBase>();
        }

        #endregion
    }
}