Change PresenceData to PresenceInfo to remove a naming conflict in the
OpenSim.Data namespace0.6.8-post-fixes
parent
1afd347615
commit
0cd3bf074a
|
@ -34,8 +34,8 @@ namespace OpenSim.Data
|
|||
{
|
||||
public class PresenceData
|
||||
{
|
||||
public UUID PrincipalID;
|
||||
public UUID RegionID;
|
||||
public UUID UUID;
|
||||
public UUID currentRegion;
|
||||
public Dictionary<string, object> Data;
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,15 @@ using OpenMetaverse;
|
|||
|
||||
namespace OpenSim.Services.Interfaces
|
||||
{
|
||||
public class PresenceInfo
|
||||
{
|
||||
public UUID PrincipalID;
|
||||
public UUID RegionID;
|
||||
public Dictionary<string, object> Data;
|
||||
}
|
||||
|
||||
public interface IPresenceService
|
||||
{
|
||||
bool Report(PresenceInfo presence);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -49,5 +49,10 @@ namespace OpenSim.Services.PresenceService
|
|||
: base(config)
|
||||
{
|
||||
}
|
||||
|
||||
public bool Report(PresenceInfo presence)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue