本文整理匯總了C++中GetParameterID函數的典型用法代碼示例。如果您正苦於以下問題:C++ GetParameterID函數的具體用法?C++ GetParameterID怎麽用?C++ GetParameterID使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了GetParameterID函數的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1: GetStringParameter
//------------------------------------------------------------------------------
std::string SolverSequenceCommand::GetStringParameter(const std::string& label,
const Integer index) const
{
return GetStringParameter(GetParameterID(label), index);
}
示例2: IsParameterReadOnly
//------------------------------------------------------------------------------
bool SolverSequenceCommand::IsParameterReadOnly(const std::string& label) const
{
return IsParameterReadOnly(GetParameterID(label));
}
示例3: SetStringParameter
//------------------------------------------------------------------------------
bool BatchEstimator::SetStringParameter(const std::string &label,
const std::string &value,
const Integer index)
{
return SetStringParameter(GetParameterID(label), value, index);
}
示例4: GetStringParameter
//------------------------------------------------------------------------------
std::string BatchEstimator::GetStringParameter(const std::string &label) const
{
return GetStringParameter(GetParameterID(label));
}
示例5: GetStringParameter
//---------------------------------------------------------------------------
// std::string GetStringParameter(const std::string &label) const
//---------------------------------------------------------------------------
std::string ChemicalTank::GetStringParameter(const std::string &label) const
{
return GetStringParameter(GetParameterID(label));
}
示例6: SetRealParameter
//------------------------------------------------------------------------------
Real AveragedDoppler::SetRealParameter(const std::string &label,
const Real value, const Integer row,
const Integer col)
{
return SetRealParameter(GetParameterID(label), value, row, col);
}
示例7: GetRealParameter
//------------------------------------------------------------------------------
Real AveragedDoppler::GetRealParameter(const std::string &label,
const Integer row,
const Integer col) const
{
return GetRealParameter(GetParameterID(label), row, col);
}
示例8: GetStringParameter
//------------------------------------------------------------------------------
std::string RFHardware::GetStringParameter(const std::string &label) const
{
return GetStringParameter(GetParameterID(label));
}
示例9: SetRealParameter
//---------------------------------------------------------------------------
// Real SetRealParameter(const std::string &label, const Real value)
//---------------------------------------------------------------------------
Real ChemicalTank::SetRealParameter(const std::string &label, const Real value)
{
return SetRealParameter(GetParameterID(label), value);
}
示例10: SetStringParameter
//------------------------------------------------------------------------------
bool RFHardware::SetStringParameter(const std::string &label,
const std::string &value)
{
return SetStringParameter(GetParameterID(label), value);
}
示例11: SetStringParameter
//---------------------------------------------------------------------------
// bool SetStringParameter(const std::string &label, const std::string &value)
//---------------------------------------------------------------------------
bool ChemicalTank::SetStringParameter(const std::string &label,
const std::string &value)
{
return SetStringParameter(GetParameterID(label), value);
}
示例12: GetPropertyEnumStrings
//------------------------------------------------------------------------------
const StringArray& Burn::GetPropertyEnumStrings(const std::string &label) const
{
return GetPropertyEnumStrings(GetParameterID(label));
}
示例13: SetStringParameter
//------------------------------------------------------------------------------
bool SolverSequenceCommand::SetStringParameter(const std::string& label,
const std::string& value, const Integer index)
{
return SetStringParameter(GetParameterID(label), value, index);
}