You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
658 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include "FITKVarientParams.h"
namespace Core
{
void FITKVarientParams::setValue(const QString& k, const QVariant v)
{
// 使用_insert方法将键k和值v插入到_settings哈希表中。
_settings.insert(k, v);
}
QVariant FITKVarientParams::getValue(const QString& k) const
{
// 直接调用_settings哈希表的value方法传入键k返回与其对应的QVariant值。
// 如果键k不存在则可能返回一个默认初始化的QVariant。
return _settings.value(k);
}
void FITKVarientParams::removeVarient(const QString & k)
{
_settings.remove(k);
}
}