Jlm
Program.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2025 Nico Reißmann <nico.reissmann@gmail.com>
3  * See COPYING for terms of redistribution.
4  */
5 
6 #ifndef JLM_UTIL_PROGRAM_HPP
7 #define JLM_UTIL_PROGRAM_HPP
8 
9 #include <filesystem>
10 #include <optional>
11 #include <vector>
12 
13 namespace jlm::util
14 {
15 
23 int
25  const std::string & programName,
26  const std::vector<std::string> & programArguments);
27 
31 std::string
32 getDotViewer();
33 
34 }
35 
36 #endif
std::string getDotViewer()
Definition: Program.cpp:42
int executeProgramAndWait(const std::string &programName, const std::vector< std::string > &programArguments)
Definition: Program.cpp:18