diff options
author | Adam Frisby | 2007-05-31 14:05:19 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-31 14:05:19 +0000 |
commit | a0305888bcc7cd2e97f14c5e7893d151a5b9de7b (patch) | |
tree | 54344bc967d58a368c0eda92dab9bb43b9d7cfb1 /OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | |
parent | Shelling out a Inventory framework a bit more. (diff) | |
download | opensim-SC_OLD-a0305888bcc7cd2e97f14c5e7893d151a5b9de7b.zip opensim-SC_OLD-a0305888bcc7cd2e97f14c5e7893d151a5b9de7b.tar.gz opensim-SC_OLD-a0305888bcc7cd2e97f14c5e7893d151a5b9de7b.tar.bz2 opensim-SC_OLD-a0305888bcc7cd2e97f14c5e7893d151a5b9de7b.tar.xz |
* Yet more inventory shelling
* Very initial MySQL work done
* Refactored some of the MySQL code - functions which are passed a reader are no longer getX() but now readX().
Diffstat (limited to 'OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs')
-rw-r--r-- | OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs index 1d70c73..2b3d826 100644 --- a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs +++ b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | |||
@@ -7,23 +7,23 @@ namespace OpenGrid.Framework.Data | |||
7 | { | 7 | { |
8 | public class InventoryItemBase | 8 | public class InventoryItemBase |
9 | { | 9 | { |
10 | LLUUID inventoryID; | 10 | public LLUUID inventoryID; |
11 | LLUUID assetID; | 11 | public LLUUID assetID; |
12 | int type; | 12 | public int type; |
13 | LLUUID parentFolderID; | 13 | public LLUUID parentFolderID; |
14 | LLUUID avatarID; | 14 | public LLUUID avatarID; |
15 | string inventoryName; | 15 | public string inventoryName; |
16 | string inventoryDescription; | 16 | public string inventoryDescription; |
17 | uint inventoryNextPermissions; | 17 | public uint inventoryNextPermissions; |
18 | uint inventoryCurrentPermissions; | 18 | public uint inventoryCurrentPermissions; |
19 | } | 19 | } |
20 | 20 | ||
21 | public class InventoryFolderBase | 21 | public class InventoryFolderBase |
22 | { | 22 | { |
23 | string name; | 23 | public string name; |
24 | LLUUID agentID; | 24 | public LLUUID agentID; |
25 | LLUUID parentID; | 25 | public LLUUID parentID; |
26 | LLUUID folderID; | 26 | public LLUUID folderID; |
27 | } | 27 | } |
28 | 28 | ||
29 | public interface IInventoryData | 29 | public interface IInventoryData |