9 lines
157 B
C++
9 lines
157 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <vector>
|
|
|
|
namespace utils::command_line
|
|
{
|
|
[[nodiscard]] const std::vector<std::filesystem::path>& get_args();
|
|
} |