mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
* 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:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user