aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs
blob: 142863917747f52bd4cc3d3150772a3bebbeeb44 (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
using System;
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()
        {

        }

        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)
        {

        }
    }
}