From 9a5ec2b84c1eef98363eed95394fe43b4b39d467 Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 25 Jun 2007 19:23:40 +0000 Subject: Some Caps/LLSD cleaning up. --- Common/OpenSim.Framework/LLSDHelpers.cs | 36 +++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-) (limited to 'Common/OpenSim.Framework') diff --git a/Common/OpenSim.Framework/LLSDHelpers.cs b/Common/OpenSim.Framework/LLSDHelpers.cs index 5b73483..3b044a3 100644 --- a/Common/OpenSim.Framework/LLSDHelpers.cs +++ b/Common/OpenSim.Framework/LLSDHelpers.cs @@ -100,6 +100,31 @@ namespace OpenSim.Framework } [LLSDType("MAP")] + public class LLSDMapLayerResponse + { + public LLSDMapRequest AgentData = new LLSDMapRequest(); + public LLSDArray LayerData = new LLSDArray(); + + public LLSDMapLayerResponse() + { + + } + } + + [LLSDType("MAP")] + public class LLSDCapsDetails + { + public string MapLayer = ""; + public string NewFileAgentInventory = ""; + //public string EventQueueGet = ""; + + public LLSDCapsDetails() + { + + } + } + + [LLSDType("MAP")] public class LLSDMapLayer { public int Left = 0; @@ -108,10 +133,9 @@ namespace OpenSim.Framework public int Bottom = 0; public LLUUID ImageID = LLUUID.Zero; - public LLSDArray TestArray = new LLSDArray(); public LLSDMapLayer() { - + } } @@ -137,6 +161,7 @@ namespace OpenSim.Framework } } + [LLSDType("MAP")] public class LLSDTest { @@ -153,12 +178,11 @@ namespace OpenSim.Framework [AttributeUsage(AttributeTargets.Class)] public class LLSDType : Attribute { - private string myHandler; - + private string myType; public LLSDType(string type) { - myHandler = type; + myType = type; } @@ -166,7 +190,7 @@ namespace OpenSim.Framework { get { - return myHandler; + return myType; } } } -- cgit v1.1