IR设计
This commit is contained in:
10
src/utils/CLI.h
Normal file
10
src/utils/CLI.h
Normal file
@@ -0,0 +1,10 @@
|
||||
// 简易命令行解析:仅支持输入文件路径。
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
struct CLIOptions {
|
||||
std::string input;
|
||||
};
|
||||
|
||||
CLIOptions ParseCLI(int argc, char** argv);
|
||||
Reference in New Issue
Block a user