Exemplo n.º 1
0
 /// <summary>
 /// Use this ctor for passing a stub executable
 /// </summary>
 /// <param name="exepath"></param>
 public Wrapper(string exepath)
 {
     this.GnuPlotPath = exepath;
     _stub            = new _GnuPlotInnerWrapper(this.GnuPlotPath);
 }
Exemplo n.º 2
0
 public Wrapper()
 {
     this.GnuPlotPath = @"C:\Program Files\gnuplot\bin\gnuplot.exe";
     _stub            = new _GnuPlotInnerWrapper(this.GnuPlotPath);
 }
Exemplo n.º 3
0
 public Wrapper(IExecutableStub stub)
 {
     _stub = stub;
 }