diff options
author | Adam Frisby | 2009-05-30 03:18:09 +0000 |
---|---|---|
committer | Adam Frisby | 2009-05-30 03:18:09 +0000 |
commit | ac80b6539f81018122f211c26805d4a9f9da32ff (patch) | |
tree | ad9bb4bf5f9b8a6d07003b1c2936c1ddfa5a05d3 /OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs | |
parent | * Adds World.Audio.* to MRM (diff) | |
download | opensim-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 'OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/IRCStackModule.cs | 41 |
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using Nini.Config; | ||
5 | using OpenSim.Region.Framework.Interfaces; | ||
6 | using OpenSim.Region.Framework.Scenes; | ||
7 | |||
8 | namespace 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 | } | ||