diff options
author | Melanie | 2009-11-18 06:19:39 +0000 |
---|---|---|
committer | Melanie | 2009-11-18 06:19:39 +0000 |
commit | 0cd3bf074a9cc50d47e6e1873a9a5346453110ce (patch) | |
tree | d33b8efd2a882df0ef07231ac0703019449d82f4 /OpenSim/Services/Interfaces | |
parent | Correct formatting of Primitive.Textures in PrimitiveBaseShape.ToOmvPrimitive... (diff) | |
download | opensim-SC_OLD-0cd3bf074a9cc50d47e6e1873a9a5346453110ce.zip opensim-SC_OLD-0cd3bf074a9cc50d47e6e1873a9a5346453110ce.tar.gz opensim-SC_OLD-0cd3bf074a9cc50d47e6e1873a9a5346453110ce.tar.bz2 opensim-SC_OLD-0cd3bf074a9cc50d47e6e1873a9a5346453110ce.tar.xz |
Change PresenceData to PresenceInfo to remove a naming conflict in the
OpenSim.Data namespace
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r-- | OpenSim/Services/Interfaces/IPresenceService.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IPresenceService.cs b/OpenSim/Services/Interfaces/IPresenceService.cs index d33b6bc..6ceeb45 100644 --- a/OpenSim/Services/Interfaces/IPresenceService.cs +++ b/OpenSim/Services/Interfaces/IPresenceService.cs | |||
@@ -31,7 +31,15 @@ using OpenMetaverse; | |||
31 | 31 | ||
32 | namespace OpenSim.Services.Interfaces | 32 | namespace OpenSim.Services.Interfaces |
33 | { | 33 | { |
34 | public class PresenceInfo | ||
35 | { | ||
36 | public UUID PrincipalID; | ||
37 | public UUID RegionID; | ||
38 | public Dictionary<string, object> Data; | ||
39 | } | ||
40 | |||
34 | public interface IPresenceService | 41 | public interface IPresenceService |
35 | { | 42 | { |
43 | bool Report(PresenceInfo presence); | ||
36 | } | 44 | } |
37 | } | 45 | } |