本文整理汇总了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);
}