summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:08:09 +0000
committerfcolin2007-02-01 10:08:09 +0000
commit5191df18a804e46a7d789b425e23533b3c135126 (patch)
tree2cde9b4231e7369b542f9579867fba674663f563
parentf41daafd596f0a0f478d6073642518f882dc8fe1 (diff)
downloadivy-csharp-5191df18a804e46a7d789b425e23533b3c135126.zip
ivy-csharp-5191df18a804e46a7d789b425e23533b3c135126.tar.gz
ivy-csharp-5191df18a804e46a7d789b425e23533b3c135126.tar.bz2
ivy-csharp-5191df18a804e46a7d789b425e23533b3c135126.tar.xz
Utilisateur : Fcolin Date : 6/12/05 Heure : 18:11 Archivé dans $/CSharp/Ivy/IvyProbeConsole Commentaire: (vss 6)
-rw-r--r--CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs b/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
index 679b0c5..5cd0b70 100644
--- a/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
+++ b/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
@@ -16,7 +16,7 @@ namespace IvyProbe
/// <summary> Console implementation of the ivyprobe test program.
/// </summary>
/// <remarks>Mainly used for testing and debugging purpose</remarks>
- public class IvyProbe
+ public class IvyProbeConsole
{
public virtual bool ExitOnDie
{
@@ -91,7 +91,7 @@ namespace IvyProbe
}
*/
- IvyProbe p = new IvyProbe(System.Console.In, timestamp, quiet, debug );
+ IvyProbeConsole p = new IvyProbeConsole(System.Console.In, timestamp, quiet, debug );
p.ExitOnDie = true;
Ivy bus = new Ivy(name, name + " ready");
/* for (int i = opt.Optind; i < args.Length; i++)
@@ -111,7 +111,7 @@ namespace IvyProbe
- public IvyProbe(TextReader in_Renamed, bool timestamp, bool quiet, bool debug)
+ public IvyProbeConsole(TextReader in_Renamed, bool timestamp, bool quiet, bool debug)
{
this.in_Renamed = in_Renamed;
this.timestamp = timestamp;