diff options
Diffstat (limited to 'OpenSim/Framework/IPlugin.cs')
-rw-r--r-- | OpenSim/Framework/IPlugin.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/IPlugin.cs b/OpenSim/Framework/IPlugin.cs index f739177..1eb1c06 100644 --- a/OpenSim/Framework/IPlugin.cs +++ b/OpenSim/Framework/IPlugin.cs | |||
@@ -38,7 +38,7 @@ namespace OpenSim.Framework | |||
38 | public PluginNotInitialisedException (string msg) : base(msg) {} | 38 | public PluginNotInitialisedException (string msg) : base(msg) {} |
39 | public PluginNotInitialisedException (string msg, Exception e) : base(msg, e) {} | 39 | public PluginNotInitialisedException (string msg, Exception e) : base(msg, e) {} |
40 | } | 40 | } |
41 | 41 | ||
42 | /// <summary> | 42 | /// <summary> |
43 | /// This interface, describes a generic plugin | 43 | /// This interface, describes a generic plugin |
44 | /// </summary> | 44 | /// </summary> |
@@ -63,17 +63,17 @@ namespace OpenSim.Framework | |||
63 | } | 63 | } |
64 | 64 | ||
65 | /// <summary> | 65 | /// <summary> |
66 | /// Any plugins which need to pass parameters to their initialisers must | 66 | /// Any plugins which need to pass parameters to their initialisers must |
67 | /// inherit this class and use it to set the PluginLoader Initialiser property | 67 | /// inherit this class and use it to set the PluginLoader Initialiser property |
68 | /// </summary> | 68 | /// </summary> |
69 | public class PluginInitialiserBase | 69 | public class PluginInitialiserBase |
70 | { | 70 | { |
71 | // this would be a lot simpler if C# supported currying or typedefs | 71 | // this would be a lot simpler if C# supported currying or typedefs |
72 | 72 | ||
73 | // default initialisation | 73 | // default initialisation |
74 | public virtual void Initialise (IPlugin plugin) | 74 | public virtual void Initialise (IPlugin plugin) |
75 | { | 75 | { |
76 | plugin.Initialise(); | 76 | plugin.Initialise(); |
77 | } | 77 | } |
78 | } | 78 | } |
79 | 79 | ||