自研批检仪检测命令测试成功
广播方式升级从机发现卡死现象
This commit is contained in:
@@ -102,7 +102,14 @@ protected:
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
QList<T> str_to_nums(mystring str, char c);
|
||||
QList<T> str_to_nums(mystring str, char c)
|
||||
{
|
||||
QStringList snums = str.split(c);
|
||||
QList<T> nums;
|
||||
for (int i = 0; i < snums.size(); i++)
|
||||
nums.append(T(snums[i].toInt(nullptr, 10)));
|
||||
return nums;
|
||||
}
|
||||
|
||||
myarray str_to_data(mystring str, char c);
|
||||
|
||||
|
Reference in New Issue
Block a user