aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs
new file mode 100644
index 0000000..c182445
--- /dev/null
+++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs
@@ -0,0 +1,41 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Nini.Config;
5using OpenSim.Region.Framework.Interfaces;
6using OpenSim.Region.Framework.Scenes;
7
8namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView
9{
10 class IRCStackModule : IRegionModule
11 {
12 #region Implementation of IRegionModule
13
14 public void Initialise(Scene scene, IConfigSource source)
15 {
16 throw new System.NotImplementedException();
17 }
18
19 public void PostInitialise()
20 {
21 throw new System.NotImplementedException();
22 }
23
24 public void Close()
25 {
26 throw new System.NotImplementedException();
27 }
28
29 public string Name
30 {
31 get { throw new System.NotImplementedException(); }
32 }
33
34 public bool IsSharedModule
35 {
36 get { throw new System.NotImplementedException(); }
37 }
38
39 #endregion
40 }
41}