1 //===-- ProcessLauncher.h ---------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef lldb_Host_ProcessLauncher_h_
11 #define lldb_Host_ProcessLauncher_h_
12 
13 namespace lldb_private {
14 
15 class ProcessLaunchInfo;
16 class Status;
17 class HostProcess;
18 
19 class ProcessLauncher {
20 public:
~ProcessLauncher()21   virtual ~ProcessLauncher() {}
22   virtual HostProcess LaunchProcess(const ProcessLaunchInfo &launch_info,
23                                     Status &error) = 0;
24 };
25 }
26 
27 #endif
28