diff options
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs new file mode 100644 index 0000000..e8355c6 --- /dev/null +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | |||
@@ -0,0 +1,28 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using libsecondlife; | ||
4 | using OpenSim.Framework.Communications; | ||
5 | using OpenSim.Framework.Data; | ||
6 | using InventoryFolder = OpenSim.Framework.Communications.Caches.InventoryFolder; | ||
7 | |||
8 | namespace OpenSim.Region.Communications.OGS1 | ||
9 | { | ||
10 | public class OGS1InventoryService : IInventoryServices | ||
11 | { | ||
12 | |||
13 | public OGS1InventoryService() | ||
14 | { | ||
15 | |||
16 | } | ||
17 | |||
18 | public void RequestInventoryForUser(LLUUID userID, InventoryFolderInfo folderCallBack, InventoryItemInfo itemCallBack) | ||
19 | { | ||
20 | |||
21 | } | ||
22 | |||
23 | public void AddNewInventoryFolder(LLUUID userID, InventoryFolder folder) | ||
24 | { | ||
25 | |||
26 | } | ||
27 | } | ||
28 | } | ||