diff options
author | fcolin | 2007-02-01 10:08:09 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:08:09 +0000 |
commit | 5191df18a804e46a7d789b425e23533b3c135126 (patch) | |
tree | 2cde9b4231e7369b542f9579867fba674663f563 /CSharp/Ivy/IvyProbeConsole | |
parent | f41daafd596f0a0f478d6073642518f882dc8fe1 (diff) | |
download | ivy-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)
Diffstat (limited to 'CSharp/Ivy/IvyProbeConsole')
-rw-r--r-- | CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs | 6 |
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;
|