aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IXInventoryData.cs
diff options
context:
space:
mode:
authorMelanie2010-01-04 20:52:44 +0000
committerMelanie2010-01-04 20:53:28 +0000
commit1ae9bfc0746b97f57031f282d4f6721b08c27f0c (patch)
tree859626a5f85201933fd75b6d54400a6db81f9685 /OpenSim/Data/IXInventoryData.cs
parentFirst stage port of the XInventoryService (diff)
downloadopensim-SC_OLD-1ae9bfc0746b97f57031f282d4f6721b08c27f0c.zip
opensim-SC_OLD-1ae9bfc0746b97f57031f282d4f6721b08c27f0c.tar.gz
opensim-SC_OLD-1ae9bfc0746b97f57031f282d4f6721b08c27f0c.tar.bz2
opensim-SC_OLD-1ae9bfc0746b97f57031f282d4f6721b08c27f0c.tar.xz
Finish conversion if XInventoryService
Diffstat (limited to 'OpenSim/Data/IXInventoryData.cs')
-rw-r--r--OpenSim/Data/IXInventoryData.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Data/IXInventoryData.cs b/OpenSim/Data/IXInventoryData.cs
index 88174d9..cd9273e 100644
--- a/OpenSim/Data/IXInventoryData.cs
+++ b/OpenSim/Data/IXInventoryData.cs
@@ -77,6 +77,8 @@ namespace OpenSim.Data
77 bool DeleteFolders(string field, string val); 77 bool DeleteFolders(string field, string val);
78 bool DeleteItems(string field, string val); 78 bool DeleteItems(string field, string val);
79 79
80 bool MoveItem(string principalID, string id, string newParent); 80 bool MoveItem(string id, string newParent);
81 XInventoryItem[] GetActiveGestures(UUID principalID);
82 int GetAssetPermissions(UUID principalID, UUID assetID);
81 } 83 }
82} 84}