diff options
author | Jeff Ames | 2009-03-07 02:00:18 +0000 |
---|---|---|
committer | Jeff Ames | 2009-03-07 02:00:18 +0000 |
commit | e1f68145be8b0cfc48c7fe6920ae8db1bfa049f5 (patch) | |
tree | d4d37926bd660bbad4dd9e4f84a385a1f770ec5d /OpenSim/Region/OptionalModules/Scripting/Minimodule/Host.cs | |
parent | * Fixes mantis: #3241 (diff) | |
download | opensim-SC_OLD-e1f68145be8b0cfc48c7fe6920ae8db1bfa049f5.zip opensim-SC_OLD-e1f68145be8b0cfc48c7fe6920ae8db1bfa049f5.tar.gz opensim-SC_OLD-e1f68145be8b0cfc48c7fe6920ae8db1bfa049f5.tar.bz2 opensim-SC_OLD-e1f68145be8b0cfc48c7fe6920ae8db1bfa049f5.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/Host.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/Host.cs | 58 |
1 files changed, 29 insertions, 29 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Host.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Host.cs index dcb70b4..c8b51b6 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/Host.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/Host.cs | |||
@@ -1,29 +1,29 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Reflection; | 3 | using System.Reflection; |
4 | using System.Text; | 4 | using System.Text; |
5 | using log4net; | 5 | using log4net; |
6 | 6 | ||
7 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | 7 | namespace OpenSim.Region.OptionalModules.Scripting.Minimodule |
8 | { | 8 | { |
9 | class Host : IHost | 9 | class Host : IHost |
10 | { | 10 | { |
11 | private readonly IObject m_obj; | 11 | private readonly IObject m_obj; |
12 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 12 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
13 | 13 | ||
14 | public Host(IObject m_obj) | 14 | public Host(IObject m_obj) |
15 | { | 15 | { |
16 | this.m_obj = m_obj; | 16 | this.m_obj = m_obj; |
17 | } | 17 | } |
18 | 18 | ||
19 | public IObject Object | 19 | public IObject Object |
20 | { | 20 | { |
21 | get { return m_obj; } | 21 | get { return m_obj; } |
22 | } | 22 | } |
23 | 23 | ||
24 | public ILog Console | 24 | public ILog Console |
25 | { | 25 | { |
26 | get { return m_log; } | 26 | get { return m_log; } |
27 | } | 27 | } |
28 | } | 28 | } |
29 | } | 29 | } |