aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/ILlsdMethodHandler.cs
diff options
context:
space:
mode:
authorlbsa712007-07-03 07:06:08 +0000
committerlbsa712007-07-03 07:06:08 +0000
commit73a5ec391aa5600cb779044fbf335ce0537e9500 (patch)
tree9df98727f377806ab6e5afdabc3299cfa03a178b /OpenSim/Framework/Servers/ILlsdMethodHandler.cs
parentYou can now substitute %name% in the filename argument for terrain save & loa... (diff)
downloadopensim-SC_OLD-73a5ec391aa5600cb779044fbf335ce0537e9500.zip
opensim-SC_OLD-73a5ec391aa5600cb779044fbf335ce0537e9500.tar.gz
opensim-SC_OLD-73a5ec391aa5600cb779044fbf335ce0537e9500.tar.bz2
opensim-SC_OLD-73a5ec391aa5600cb779044fbf335ce0537e9500.tar.xz
* Completed conceptual LlsdMethod - everything resides in SimpleApp pending guru approval.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/ILlsdMethodHandler.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/ILlsdMethodHandler.cs b/OpenSim/Framework/Servers/ILlsdMethodHandler.cs
new file mode 100644
index 0000000..f5daa8d
--- /dev/null
+++ b/OpenSim/Framework/Servers/ILlsdMethodHandler.cs
@@ -0,0 +1,13 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace OpenSim.Framework.Servers
6{
7 public interface ILlsdMethodHandler
8 {
9 string Handle(string request, string path);
10 }
11
12
13}