diff options
author | Jeff Ames | 2007-12-31 12:00:40 +0000 |
---|---|---|
committer | Jeff Ames | 2007-12-31 12:00:40 +0000 |
commit | 3c9505199a1ff61a3fc9bf1bc6d9592276a8fda1 (patch) | |
tree | c96852dedf4ce6a93309b7f74f62f6b025f90b60 /OpenSim/Grid/ScriptServer/RemotingObject.cs | |
parent | Changed from "Load all .dll's in ScriptEngine" to "Load only DotNetEngine" (t... (diff) | |
download | opensim-SC_OLD-3c9505199a1ff61a3fc9bf1bc6d9592276a8fda1.zip opensim-SC_OLD-3c9505199a1ff61a3fc9bf1bc6d9592276a8fda1.tar.gz opensim-SC_OLD-3c9505199a1ff61a3fc9bf1bc6d9592276a8fda1.tar.bz2 opensim-SC_OLD-3c9505199a1ff61a3fc9bf1bc6d9592276a8fda1.tar.xz |
Set svn:eol-style and svn:ignore.
Diffstat (limited to 'OpenSim/Grid/ScriptServer/RemotingObject.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/RemotingObject.cs | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/OpenSim/Grid/ScriptServer/RemotingObject.cs b/OpenSim/Grid/ScriptServer/RemotingObject.cs index 4c5a176..2a235bf 100644 --- a/OpenSim/Grid/ScriptServer/RemotingObject.cs +++ b/OpenSim/Grid/ScriptServer/RemotingObject.cs | |||
@@ -1,25 +1,25 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | using OpenSim.Region.Environment.Interfaces; | 4 | using OpenSim.Region.Environment.Interfaces; |
5 | 5 | ||
6 | namespace OpenSim.Grid.ScriptServer | 6 | namespace OpenSim.Grid.ScriptServer |
7 | { | 7 | { |
8 | public class RemotingObject : MarshalByRefObject | 8 | public class RemotingObject : MarshalByRefObject |
9 | { | 9 | { |
10 | // This object will be exposed over remoting. It is a singleton, so it exists only in as one instance. | 10 | // This object will be exposed over remoting. It is a singleton, so it exists only in as one instance. |
11 | 11 | ||
12 | // Expose ScriptEngine directly for now ... this is not very secure :) | 12 | // Expose ScriptEngine directly for now ... this is not very secure :) |
13 | // NOTE! CURRENTLY JUST HARDWIRED DOTNETENGINE! | 13 | // NOTE! CURRENTLY JUST HARDWIRED DOTNETENGINE! |
14 | public OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine ScriptEngine = new OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine(); | 14 | public OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine ScriptEngine = new OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine(); |
15 | 15 | ||
16 | /// <summary> | 16 | /// <summary> |
17 | /// Receives calls from remote grids. | 17 | /// Receives calls from remote grids. |
18 | /// </summary> | 18 | /// </summary> |
19 | /// <returns></returns> | 19 | /// <returns></returns> |
20 | public OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine GetScriptEngine() | 20 | public OpenSim.Region.ScriptEngine.DotNetEngine.ScriptEngine GetScriptEngine() |
21 | { | 21 | { |
22 | return ScriptEngine; | 22 | return ScriptEngine; |
23 | } | 23 | } |
24 | } | 24 | } |
25 | } | 25 | } |