aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorlbsa712007-07-02 16:03:58 +0000
committerlbsa712007-07-02 16:03:58 +0000
commitfcabdab7bc7466a8a56c0f034c56ca22124e8060 (patch)
tree84c434315a859801fd1b76df6a559eb9ca901dc0 /OpenSim/Region
parent* Added support for SL-style RAW export similar to the official simulators op... (diff)
downloadopensim-SC_OLD-fcabdab7bc7466a8a56c0f034c56ca22124e8060.zip
opensim-SC_OLD-fcabdab7bc7466a8a56c0f034c56ca22124e8060.tar.gz
opensim-SC_OLD-fcabdab7bc7466a8a56c0f034c56ca22124e8060.tar.bz2
opensim-SC_OLD-fcabdab7bc7466a8a56c0f034c56ca22124e8060.tar.xz
* Started working on LlsdMethod for BaseHttpServer
*Renamed IRestHandler.cs to RestMethod.cs which is the correct name.
Diffstat (limited to 'OpenSim/Region')
-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}