tmc/tools/src/asset_processor/util.h

15 lines
298 B
C

#ifndef UTIL_H
#define UTIL_H
#include <nlohmann/json_fwd.hpp>
#include <memory>
#include <stdexcept>
#include <cstdlib>
#include <string>
#include <vector>
void check_call(const std::vector<std::string>& cmd);
std::string opt_param(const std::string& format, int defaultVal, int value);
#endif