aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Capabilities/LLSDType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Capabilities/LLSDType.cs')
-rw-r--r--OpenSim/Region/Capabilities/LLSDType.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/Capabilities/LLSDType.cs b/OpenSim/Region/Capabilities/LLSDType.cs
index 7da5861..a2ae8df 100644
--- a/OpenSim/Region/Capabilities/LLSDType.cs
+++ b/OpenSim/Region/Capabilities/LLSDType.cs
@@ -34,7 +34,7 @@ namespace OpenSim.Region.Capabilities
34 [AttributeUsage(AttributeTargets.Class)] 34 [AttributeUsage(AttributeTargets.Class)]
35 public class LLSDType : Attribute 35 public class LLSDType : Attribute
36 { 36 {
37 private string myType; 37 protected string myType;
38 38
39 public LLSDType(string type) 39 public LLSDType(string type)
40 { 40 {
@@ -50,4 +50,12 @@ namespace OpenSim.Region.Capabilities
50 } 50 }
51 } 51 }
52 } 52 }
53
54 [AttributeUsage(AttributeTargets.Class)]
55 public class LLSDMap : LLSDType
56 {
57 public LLSDMap() : base( "MAP" )
58 {
59 }
60 }
53} 61}