aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Console/MockConsole.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/OpenSim/Framework/Console/MockConsole.cs b/OpenSim/Framework/Console/MockConsole.cs
new file mode 100644
index 0000000..57c56f1
--- /dev/null
+++ b/OpenSim/Framework/Console/MockConsole.cs
@@ -0,0 +1,32 @@
1using System;
2using System.Threading;
3using System.Collections.Generic;
4using System.Text;
5
6namespace OpenSim.Framework.Console
7{
8 public class MockConsole : CommandConsole
9 {
10 public MockConsole(string defaultPrompt) : base(defaultPrompt)
11 {
12 }
13 public override void Output(string text)
14 {
15 }
16 public override void Output(string text, string level)
17 {
18 }
19
20 public override string ReadLine(string p, bool isCommand, bool e)
21 {
22 //Thread.CurrentThread.Join(1000);
23 return string.Empty;
24 }
25 public override void UnlockOutput()
26 {
27 }
28 public override void LockOutput()
29 {
30 }
31 }
32}