* Started working on LlsdMethod for BaseHttpServer

*Renamed IRestHandler.cs to RestMethod.cs which is the correct name.
This commit is contained in:
lbsa71
2007-07-02 16:03:58 +00:00
parent c25a2fea59
commit fcabdab7bc
7 changed files with 113 additions and 83 deletions

View File

@@ -34,7 +34,7 @@ namespace OpenSim.Region.Capabilities
[AttributeUsage(AttributeTargets.Class)]
public class LLSDType : Attribute
{
private string myType;
protected string myType;
public LLSDType(string type)
{
@@ -50,4 +50,12 @@ namespace OpenSim.Region.Capabilities
}
}
}
[AttributeUsage(AttributeTargets.Class)]
public class LLSDMap : LLSDType
{
public LLSDMap() : base( "MAP" )
{
}
}
}