diff options
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
Conflicts:
bin/Regions/Regions.ini.example
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ISceneCommandsModule.cs (renamed from OpenSim/ApplicationPlugins/Rest/Inventory/IRest.cs) | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/IRest.cs b/OpenSim/Region/Framework/Interfaces/ISceneCommandsModule.cs index 8b43d42..c5e678b 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/IRest.cs +++ b/OpenSim/Region/Framework/Interfaces/ISceneCommandsModule.cs | |||
@@ -9,7 +9,7 @@ | |||
9 | * * Redistributions in binary form must reproduce the above copyright | 9 | * * Redistributions in binary form must reproduce the above copyright |
10 | * notice, this list of conditions and the following disclaimer in the | 10 | * notice, this list of conditions and the following disclaimer in the |
11 | * documentation and/or other materials provided with the distribution. | 11 | * documentation and/or other materials provided with the distribution. |
12 | * * Neither the name of the OpenSimulator Project nor the | 12 | * * Neither the name of the OpenSim Project nor the |
13 | * names of its contributors may be used to endorse or promote products | 13 | * names of its contributors may be used to endorse or promote products |
14 | * derived from this software without specific prior written permission. | 14 | * derived from this software without specific prior written permission. |
15 | * | 15 | * |
@@ -25,19 +25,19 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | namespace OpenSim.ApplicationPlugins.Rest.Inventory | 28 | using System; |
29 | { | 29 | using System.Collections.Generic; |
30 | /// <summary> | 30 | using OpenMetaverse; |
31 | /// This interface represents the boundary between the general purpose | 31 | using OpenSim.Framework; |
32 | /// REST plugin handling, and the functionally specific handlers. The | 32 | using OpenSim.Region.Framework.Scenes; |
33 | /// handler knows only to initialize and terminate all such handlers | ||
34 | /// that it finds. Implementing this interface identifies the class as | ||
35 | /// a REST handler implementation. | ||
36 | /// </summary> | ||
37 | 33 | ||
38 | internal interface IRest | 34 | namespace OpenSim.Region.Framework.Interfaces |
35 | { | ||
36 | public interface ISceneCommandsModule | ||
39 | { | 37 | { |
40 | void Initialize(); | 38 | /// <summary> |
41 | void Close(); | 39 | /// Sets the scene debug options. |
40 | /// </summary> | ||
41 | void SetSceneDebugOptions(Dictionary<string, string> options); | ||
42 | } | 42 | } |
43 | } | 43 | } \ No newline at end of file |