Added functions to parse the command line arguments.

This commit is contained in:
Caball
2024-12-30 23:28:21 +01:00
parent 51e831cbfe
commit 1db89c64c6
2 changed files with 44 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#pragma once
#include <filesystem>
#include <vector>
namespace utils::command_line
{
[[nodiscard]] const std::vector<std::filesystem::path>& get_args();
}