* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. Thanks A_Biondi and Melanie!

* This builds but might not work.   JustinCC will examine..   it may work out of the box.
This commit is contained in:
Teravus Ovares
2008-04-30 16:08:24 +00:00
parent dd96158afe
commit a9cc76e0ef
16 changed files with 313 additions and 50 deletions

View File

@@ -54,6 +54,10 @@ namespace OpenSim.Framework
/// </summary>
private LLUUID _creator;
private LLUUID _owner;
private uint _nextPermissions;
/// <summary>
/// A mask containing permissions for the current owner (cannot be enforced)
/// </summary>
@@ -89,20 +93,44 @@ namespace OpenSim.Framework
/// </summary>
private string _name;
/// <summary>
/// A mask containing the permissions for the next owner (cannot be enforced)
///
/// </summary>
private uint _nextPermissions;
private LLUUID _groupID;
/// <summary>
/// The owner of this inventory item
///
/// </summary>
private LLUUID _owner;
private bool _groupOwned;
public LLUUID ID
{
get { return _id; }
set { _id = value; }
/// <summary>
///
/// </summary>
private int _salePrice;
/// <summary>
///
/// </summary>
private byte _saleType;
/// <summary>
///
/// </summary>
private uint _flags;
/// <summary>
///
/// </summary>
public int _creationDate;
public LLUUID ID {
get {
return _id;
}
set {
_id = value;
}
}
public int InvType
@@ -176,5 +204,77 @@ namespace OpenSim.Framework
get { return _assetID; }
set { _assetID = value; }
}
public LLUUID GroupID
{
get
{
return _groupID;
}
set
{
_groupID = value;
}
}
public bool GroupOwned
{
get
{
return _groupOwned;
}
set
{
_groupOwned = value;
}
}
public int SalePrice
{
get
{
return _salePrice;
}
set
{
_salePrice = value;
}
}
public byte SaleType
{
get
{
return _saleType;
}
set
{
_saleType = value;
}
}
public uint Flags
{
get
{
return _flags;
}
set
{
_flags = value;
}
}
public int CreationDate
{
get
{
return _creationDate;
}
set
{
_creationDate = value;
}
}
}
}
}