Change PresenceData to PresenceInfo to remove a naming conflict in the

OpenSim.Data namespace
0.6.8-post-fixes
Melanie 2009-11-18 06:19:39 +00:00
parent 1afd347615
commit 0cd3bf074a
3 changed files with 15 additions and 2 deletions

View File

@ -34,8 +34,8 @@ namespace OpenSim.Data
{ {
public class PresenceData public class PresenceData
{ {
public UUID PrincipalID; public UUID UUID;
public UUID RegionID; public UUID currentRegion;
public Dictionary<string, object> Data; public Dictionary<string, object> Data;
} }

View File

@ -31,7 +31,15 @@ using OpenMetaverse;
namespace OpenSim.Services.Interfaces namespace OpenSim.Services.Interfaces
{ {
public class PresenceInfo
{
public UUID PrincipalID;
public UUID RegionID;
public Dictionary<string, object> Data;
}
public interface IPresenceService public interface IPresenceService
{ {
bool Report(PresenceInfo presence);
} }
} }

View File

@ -49,5 +49,10 @@ namespace OpenSim.Services.PresenceService
: base(config) : base(config)
{ {
} }
public bool Report(PresenceInfo presence)
{
return false;
}
} }
} }