Config
RTE 配置类,用于配置 RTE 对象。
C++
class Config {
public:
void SetAppId(const char *app_id, Error *err);
const char* GetAppId(Error *err);
void SetJsonParameter(const char *json_parameter, Error *err = nullptr);
std::string GetJsonParameter(Error *err = nullptr)
};
自从
v4.5.0
方法
SetAppId
设置 App ID。详见 SetAppId。
GetAppId
获取设置的 App ID。详见 GetAppId。
SetJsonParameter
设置 SDK 的 JSON 配置信息。详见 SetJsonParameter。
GetJsonParameter
获取设置 SDK 的 JSON 配置信息。详见 GetJsonParameter。