Last change
on this file since 13825 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
832 bytes
|
Rev | Line | |
---|
[12762] | 1 | // -------------------------------------------------------------------------------------------------------------------- |
---|
| 2 | // <copyright file="IProcessStartInfoWrapper.cs" company="Jamie Dixon Ltd"> |
---|
| 3 | // Jamie Dixon |
---|
| 4 | // </copyright> |
---|
| 5 | // <summary> |
---|
| 6 | // Defines the IProcessStartInfoWrapper interface. |
---|
| 7 | // </summary> |
---|
| 8 | // -------------------------------------------------------------------------------------------------------------------- |
---|
| 9 | |
---|
| 10 | namespace GraphVizWrapper |
---|
| 11 | { |
---|
| 12 | public interface IProcessStartInfoWrapper |
---|
| 13 | { |
---|
| 14 | string FileName { get; set; } |
---|
| 15 | string Arguments { get; set; } |
---|
| 16 | |
---|
| 17 | bool RedirectStandardInput { get; set; } |
---|
| 18 | bool RedirectStandardOutput { get; set; } |
---|
| 19 | bool RedirectStandardError { get; set; } |
---|
| 20 | bool UseShellExecute { get; set; } |
---|
| 21 | bool CreateNoWindow { get; set; } |
---|
| 22 | } |
---|
| 23 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.