summaryrefslogtreecommitdiff
path: root/tools/src/asset_processor/util.h
blob: 00781a20f503f527a4010cb417b208f8c210ef1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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