Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/GraphVizWrapper/Queries/GetStartProcessQuery.cs @ 13918

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

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

File size: 699 bytes
Line 
1// --------------------------------------------------------------------------------------------------------------------
2// <copyright file="GetStartProcessQuery.cs" company="Jamie Dixon Ltd">
3//   Jamie Dixon
4// </copyright>
5// <summary>
6//   Defines the GetStartProcessQuery type.
7// </summary>
8// --------------------------------------------------------------------------------------------------------------------
9
10namespace GraphVizWrapper.Queries
11{
12    using System.Diagnostics;
13
14    public class GetStartProcessQuery : IGetStartProcessQuery
15    {
16        public Process Invoke(ProcessStartInfo processStartInfo)
17        {
18            return Process.Start(processStartInfo);
19        }
20    }
21}
Note: See TracBrowser for help on using the repository browser.