From 41ad610f3e44d2c73451ab49b71e697259c8c965 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Wed, 12 Aug 2009 13:11:15 -0700 Subject: * 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 --- OpenSim/Framework/InventoryFolderBase.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'OpenSim/Framework/InventoryFolderBase.cs') diff --git a/OpenSim/Framework/InventoryFolderBase.cs b/OpenSim/Framework/InventoryFolderBase.cs index e923f39..05f11a4 100644 --- a/OpenSim/Framework/InventoryFolderBase.cs +++ b/OpenSim/Framework/InventoryFolderBase.cs @@ -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; + } } } -- cgit v1.1