예제 #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);
 }
예제 #2
0
 public Wrapper()
 {
     this.GnuPlotPath = @"C:\Program Files\gnuplot\bin\gnuplot.exe";
     _stub            = new _GnuPlotInnerWrapper(this.GnuPlotPath);
 }
예제 #3
0
 public Wrapper(IExecutableStub stub)
 {
     _stub = stub;
 }