* Added two new packet handler implementations for inventory ops. This is starting to work! - but can't be activated incrementally, the flip needs to be global for all inventory ops.

* Added a base inventory connector that does common processing of inventory among all reference connector implementations. E.g. AddItem requires additional processing before being forwarded to service.
* Added if (m_Enabled) upon RemoveRegion
This commit is contained in:
Diva Canto
2009-08-12 13:11:15 -07:00
parent b3b506cba2
commit 41ad610f3e
8 changed files with 323 additions and 77 deletions

View File

@@ -68,5 +68,24 @@ namespace OpenSim.Framework
get { return _version; }
set { _version = value; }
}
public InventoryFolderBase()
{
}
public InventoryFolderBase(UUID id)
{
ID = id;
}
public InventoryFolderBase(UUID id, string name, UUID owner, short type, UUID parent, ushort version)
{
ID = id;
Name = name;
Owner = owner;
Type = type;
ParentID = parent;
Version = version;
}
}
}