Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/GraphVizWrapper/ProcessStartInfoWrapper.cs @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 901 bytes
Line 
1// --------------------------------------------------------------------------------------------------------------------
2// <copyright file="ProcessStartInfoWrapper.cs" company="Jamie Dixon Ltd">
3//   Jamie Dixon
4// </copyright>
5// <summary>
6//   Defines the ProcessStartInfoWrapper type.
7// </summary>
8// --------------------------------------------------------------------------------------------------------------------
9
10namespace GraphVizWrapper
11{
12    public class ProcessStartInfoWrapper : IProcessStartInfoWrapper
13    {
14        public string FileName { get; set; }
15
16        public string Arguments { get; set; }
17
18        public bool RedirectStandardInput { get; set; }
19
20        public bool RedirectStandardOutput { get; set; }
21
22        public bool RedirectStandardError { get; set; }
23
24        public bool UseShellExecute { get; set; }
25
26        public bool CreateNoWindow { get; set; }
27    }
28}
Note: See TracBrowser for help on using the repository browser.