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