🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
TestConfig.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24#include "AstUtil/StartupConfig.hpp"
25
26AST_NAMESPACE_BEGIN
27
35AST_TEST_CAPI StartupConfig* aTestGetConfig();
36
37
41AST_TEST_API ValueView aTestGetConfigValue(StringView key);
42
43
44
48AST_TEST_API std::vector<std::string> aTestGetConfigStringVector(StringView key);
49
50
54AST_TEST_API std::vector<StringView> aTestGetConfigStringViewVector(StringView key);
55
56
59AST_NAMESPACE_END
std::vector< StringView > aTestGetConfigStringViewVector(StringView key)
获取测试配置值视图向量
定义 TestConfig.cpp:59
std::vector< std::string > aTestGetConfigStringVector(StringView key)
获取测试配置值向量
定义 TestConfig.cpp:54
StartupConfig * aTestGetConfig()
获取测试配置
定义 TestConfig.cpp:43
ValueView aTestGetConfigValue(StringView key)
获取测试配置值
定义 TestConfig.cpp:49