diff options
author | jaseg <git@jaseg.de> | 2021-09-30 20:37:32 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2021-09-30 20:37:49 +0200 |
commit | 2616cf46ff2005d36ff0481f602d7cb1bfebc8ea (patch) | |
tree | 6f1807253392c9281f7be9cde3082059cd558161 /svg-flatten/src/util.h | |
parent | bc54e8233f614a905884c75ed70b15daef156ac9 (diff) | |
download | gerbolyze-2616cf46ff2005d36ff0481f602d7cb1bfebc8ea.tar.gz gerbolyze-2616cf46ff2005d36ff0481f602d7cb1bfebc8ea.tar.bz2 gerbolyze-2616cf46ff2005d36ff0481f602d7cb1bfebc8ea.zip |
svg-flatten: Add forwarding logic for usvg font optionsv2.2.4
Diffstat (limited to 'svg-flatten/src/util.h')
-rw-r--r-- | svg-flatten/src/util.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/svg-flatten/src/util.h b/svg-flatten/src/util.h index f3fbe32..bed915b 100644 --- a/svg-flatten/src/util.h +++ b/svg-flatten/src/util.h @@ -18,7 +18,10 @@ #pragma once +#include <vector> +#include <string> + namespace gerbolyze { -int run_cargo_command(const char *cmd_name, const char *cmdline[], const char *envvar); +int run_cargo_command(const char *cmd_name, std::vector<std::string> &cmdline, const char *envvar); } |