aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs
diff options
context:
space:
mode:
authorAdam Frisby2009-05-30 03:18:09 +0000
committerAdam Frisby2009-05-30 03:18:09 +0000
commitac80b6539f81018122f211c26805d4a9f9da32ff (patch)
treead9bb4bf5f9b8a6d07003b1c2936c1ddfa5a05d3 /OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs
parent* Adds World.Audio.* to MRM (diff)
downloadopensim-SC_OLD-ac80b6539f81018122f211c26805d4a9f9da32ff.zip
opensim-SC_OLD-ac80b6539f81018122f211c26805d4a9f9da32ff.tar.gz
opensim-SC_OLD-ac80b6539f81018122f211c26805d4a9f9da32ff.tar.bz2
opensim-SC_OLD-ac80b6539f81018122f211c26805d4a9f9da32ff.tar.xz
* May partially implement a C# IRCd & IRCClientStack.
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}