diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Console/MockConsole.cs | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/OpenSim/Framework/Console/MockConsole.cs b/OpenSim/Framework/Console/MockConsole.cs index e1ff720..d314047 100644 --- a/OpenSim/Framework/Console/MockConsole.cs +++ b/OpenSim/Framework/Console/MockConsole.cs | |||
@@ -30,6 +30,7 @@ using System.Threading; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Text; | 31 | using System.Text; |
32 | using System.Xml; | 32 | using System.Xml; |
33 | using Nini.Config; | ||
33 | 34 | ||
34 | namespace OpenSim.Framework.Console | 35 | namespace OpenSim.Framework.Console |
35 | { | 36 | { |
@@ -56,23 +57,24 @@ namespace OpenSim.Framework.Console | |||
56 | 57 | ||
57 | public string ReadLine(string p, bool isCommand, bool e) { return ""; } | 58 | public string ReadLine(string p, bool isCommand, bool e) { return ""; } |
58 | 59 | ||
59 | public object ConsoleScene { | 60 | public IScene ConsoleScene { |
60 | get { return null; } | 61 | get { return null; } |
61 | set {} | 62 | set {} |
62 | } | 63 | } |
63 | 64 | ||
64 | public void Output(string text, string level) {} | 65 | public void Output(string format) { } |
65 | public void Output(string text) {} | 66 | public void Output(string format, params object[] components) { } |
66 | public void OutputFormat(string format, params object[] components) {} | ||
67 | 67 | ||
68 | public string CmdPrompt(string p) { return ""; } | 68 | public string Prompt(string p) { return ""; } |
69 | public string CmdPrompt(string p, string def) { return ""; } | 69 | public string Prompt(string p, string def) { return ""; } |
70 | public string CmdPrompt(string p, List<char> excludedCharacters) { return ""; } | 70 | public string Prompt(string p, List<char> excludedCharacters) { return ""; } |
71 | public string CmdPrompt(string p, string def, List<char> excludedCharacters) { return ""; } | 71 | public string Prompt(string p, string def, List<char> excludedCharacters, bool echo) { return ""; } |
72 | 72 | ||
73 | public string CmdPrompt(string prompt, string defaultresponse, List<string> options) { return ""; } | 73 | public string Prompt(string prompt, string defaultresponse, List<string> options) { return ""; } |
74 | 74 | ||
75 | public string PasswdPrompt(string p) { return ""; } | 75 | public string PasswdPrompt(string p) { return ""; } |
76 | |||
77 | public void ReadConfig(IConfigSource configSource) { } | ||
76 | } | 78 | } |
77 | 79 | ||
78 | public class MockCommands : ICommands | 80 | public class MockCommands : ICommands |