This commit is contained in:
jing
2025-12-29 20:11:51 +08:00
parent c153604c2e
commit e1c1f2a40d
14 changed files with 402 additions and 27 deletions

10
src/utils/CLI.h Normal file
View File

@@ -0,0 +1,10 @@
// 简易命令行解析:仅支持输入文件路径。
#pragma once
#include <string>
struct CLIOptions {
std::string input;
};
CLIOptions ParseCLI(int argc, char** argv);