cprover
run.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module:
4 
5 Author: Daniel Kroening
6 
7 Date: August 2012
8 
9 \*******************************************************************/
10 
11 
12 #ifndef CPROVER_UTIL_RUN_H
13 #define CPROVER_UTIL_RUN_H
14 
15 #include <iosfwd>
16 #include <string>
17 #include <vector>
18 
19 int run(const std::string &what, const std::vector<std::string> &argv);
20 
27 int run(
28  const std::string &what,
29  const std::vector<std::string> &argv,
30  const std::string &std_input,
31  const std::string &std_output,
32  const std::string &std_error);
33 
41 int run(
42  const std::string &what,
43  const std::vector<std::string> &argv,
44  const std::string &std_input,
45  std::ostream &std_output,
46  const std::string &std_error);
47 
48 #endif // CPROVER_UTIL_RUN_H
run
int run(const std::string &what, const std::vector< std::string > &argv)
Definition: run.cpp:49