diff options
author | Diva Canto | 2009-08-12 20:40:49 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-12 20:40:49 -0700 |
commit | b0292d59a54fab6f7e825d6f0e5f0517d56243a6 (patch) | |
tree | 3c49fe36db9167babb7c8c44758a9755cd02b271 /OpenSim/Region/Application/IApplicationPlugin.cs | |
parent | Redirected all calls to CachedUserProfile methods to the inventory service. R... (diff) | |
parent | minor:comments (diff) | |
download | opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.zip opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.gz opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.bz2 opensim-SC-b0292d59a54fab6f7e825d6f0e5f0517d56243a6.tar.xz |
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Application/IApplicationPlugin.cs')
-rw-r--r-- | OpenSim/Region/Application/IApplicationPlugin.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/IApplicationPlugin.cs b/OpenSim/Region/Application/IApplicationPlugin.cs index 1e1dae0..6e6d48c 100644 --- a/OpenSim/Region/Application/IApplicationPlugin.cs +++ b/OpenSim/Region/Application/IApplicationPlugin.cs | |||
@@ -29,12 +29,24 @@ using OpenSim.Framework; | |||
29 | 29 | ||
30 | namespace OpenSim | 30 | namespace OpenSim |
31 | { | 31 | { |
32 | /// <summary> | ||
33 | /// OpenSimulator Application Plugin framework interface | ||
34 | /// </summary> | ||
32 | public interface IApplicationPlugin : IPlugin | 35 | public interface IApplicationPlugin : IPlugin |
33 | { | 36 | { |
37 | /// <summary> | ||
38 | /// Initialize the Plugin | ||
39 | /// </summary> | ||
40 | /// <param name="openSim">The Application instance</param> | ||
34 | void Initialise(OpenSimBase openSim); | 41 | void Initialise(OpenSimBase openSim); |
42 | |||
43 | /// <summary> | ||
44 | /// Called when the application loading is completed | ||
45 | /// </summary> | ||
35 | void PostInitialise(); | 46 | void PostInitialise(); |
36 | } | 47 | } |
37 | 48 | ||
49 | |||
38 | public class ApplicationPluginInitialiser : PluginInitialiserBase | 50 | public class ApplicationPluginInitialiser : PluginInitialiserBase |
39 | { | 51 | { |
40 | private OpenSimBase server; | 52 | private OpenSimBase server; |