From 8ecfc9a717c259fd238312888f6178b3f86c008a Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 10 Jul 2009 20:17:13 +0000 Subject: Committing the interface change and the addition to the modules to get the ball rolling on replacable modules. No user functionality yet --- OpenSim/Client/Linden/LLClientStackModule.cs | 5 +++++ OpenSim/Client/Linden/LLProxyLoginModule.cs | 5 +++++ OpenSim/Client/Linden/LLStandaloneLoginModule.cs | 5 +++++ 3 files changed, 15 insertions(+) (limited to 'OpenSim/Client') diff --git a/OpenSim/Client/Linden/LLClientStackModule.cs b/OpenSim/Client/Linden/LLClientStackModule.cs index 74612bb..09177f6 100644 --- a/OpenSim/Client/Linden/LLClientStackModule.cs +++ b/OpenSim/Client/Linden/LLClientStackModule.cs @@ -110,6 +110,11 @@ namespace OpenSim.Client.Linden } + public Type ReplacableInterface + { + get { return null; } + } + public string Name { get { return "LLClientStackModule"; } diff --git a/OpenSim/Client/Linden/LLProxyLoginModule.cs b/OpenSim/Client/Linden/LLProxyLoginModule.cs index f7608d1..0e4b549 100644 --- a/OpenSim/Client/Linden/LLProxyLoginModule.cs +++ b/OpenSim/Client/Linden/LLProxyLoginModule.cs @@ -125,6 +125,11 @@ namespace OpenSim.Client.Linden } + public Type ReplacableInterface + { + get { return null; } + } + public string Name { get { return "LLProxyLoginModule"; } diff --git a/OpenSim/Client/Linden/LLStandaloneLoginModule.cs b/OpenSim/Client/Linden/LLStandaloneLoginModule.cs index 21197f8..dde5fb0 100644 --- a/OpenSim/Client/Linden/LLStandaloneLoginModule.cs +++ b/OpenSim/Client/Linden/LLStandaloneLoginModule.cs @@ -155,6 +155,11 @@ namespace OpenSim.Client.Linden } } + public Type ReplacableInterface + { + get { return null; } + } + public string Name { get { return "LLStandaloneLoginModule"; } -- cgit v1.1