aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorMelanie2010-04-14 01:17:27 +0100
committerMelanie2010-04-14 01:17:27 +0100
commitfac55bc78b70a1f8a3a53b222d9df515e32e82ae (patch)
treeab150b21ba4f2d80b4d630912b6741af4e05c400 /OpenSim/Region/Framework/Interfaces
parentDrop unused Alert() method from ISnmpModule (diff)
downloadopensim-SC_OLD-fac55bc78b70a1f8a3a53b222d9df515e32e82ae.zip
opensim-SC_OLD-fac55bc78b70a1f8a3a53b222d9df515e32e82ae.tar.gz
opensim-SC_OLD-fac55bc78b70a1f8a3a53b222d9df515e32e82ae.tar.bz2
opensim-SC_OLD-fac55bc78b70a1f8a3a53b222d9df515e32e82ae.tar.xz
Change ISnmpModule to use scene references
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/ISnmpModule.cs11
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs b/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
index d37a01b..5143b21 100644
--- a/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
@@ -4,8 +4,15 @@
4// 4//
5// This file is not open source. All rights reserved 5// This file is not open source. All rights reserved
6// Mod 2 6// Mod 2
7
8using OpenSim.Region.Framework.Scenes;
9
7public interface ISnmpModule 10public interface ISnmpModule
8{ 11{
9 void Trap(int code,string simname,string Message); 12 void Trap(int code, string Message, Scene scene);
10 void ColdStart(int step , string simname); 13 void Critcal(string Message, Scene scene);
14 void Warning(string Message, Scene scene);
15 void Major(string Message, Scene scene);
16 void ColdStart(int step , Scene scene);
17 void Shutdown(int step , Scene scene);
11} 18}