當前位置: 首頁>>代碼示例>>C++>>正文


C++ GetParameterID函數代碼示例

本文整理匯總了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);
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:6,代碼來源:SolverSequenceCommand.cpp

示例2: IsParameterReadOnly

//------------------------------------------------------------------------------
bool SolverSequenceCommand::IsParameterReadOnly(const std::string& label) const
{
   return IsParameterReadOnly(GetParameterID(label));
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:5,代碼來源:SolverSequenceCommand.cpp

示例3: SetStringParameter

//------------------------------------------------------------------------------
bool BatchEstimator::SetStringParameter(const std::string &label,
                                        const std::string &value,
                                        const Integer index)
{
   return SetStringParameter(GetParameterID(label), value, index);
}
開發者ID:ddj116,項目名稱:gmat,代碼行數:7,代碼來源:BatchEstimator.cpp

示例4: GetStringParameter

//------------------------------------------------------------------------------
std::string BatchEstimator::GetStringParameter(const std::string &label) const
{
   return GetStringParameter(GetParameterID(label));
}
開發者ID:ddj116,項目名稱:gmat,代碼行數:5,代碼來源:BatchEstimator.cpp

示例5: GetStringParameter

//---------------------------------------------------------------------------
// std::string GetStringParameter(const std::string &label) const
//---------------------------------------------------------------------------
std::string ChemicalTank::GetStringParameter(const std::string &label) const
{
   return GetStringParameter(GetParameterID(label));
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:7,代碼來源:ChemicalTank.cpp

示例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);
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:7,代碼來源:AveragedDoppler.cpp

示例7: GetRealParameter

//------------------------------------------------------------------------------
Real AveragedDoppler::GetRealParameter(const std::string &label,
                                      const Integer row,
                                      const Integer col) const
{
   return GetRealParameter(GetParameterID(label), row, col);
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:7,代碼來源:AveragedDoppler.cpp

示例8: GetStringParameter

//------------------------------------------------------------------------------
std::string RFHardware::GetStringParameter(const std::string &label) const
{
   return GetStringParameter(GetParameterID(label));
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:5,代碼來源:RFHardware.cpp

示例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);
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:7,代碼來源:ChemicalTank.cpp

示例10: SetStringParameter

//------------------------------------------------------------------------------
bool RFHardware::SetStringParameter(const std::string &label,
                                   const std::string &value)
{
   return SetStringParameter(GetParameterID(label), value);
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:6,代碼來源:RFHardware.cpp

示例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);
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:8,代碼來源:ChemicalTank.cpp

示例12: GetPropertyEnumStrings

//------------------------------------------------------------------------------
const StringArray& Burn::GetPropertyEnumStrings(const std::string &label) const
{
   return GetPropertyEnumStrings(GetParameterID(label));
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:5,代碼來源:Burn.cpp

示例13: SetStringParameter

//------------------------------------------------------------------------------
bool SolverSequenceCommand::SetStringParameter(const std::string& label,
      const std::string& value, const Integer index)
{
   return SetStringParameter(GetParameterID(label), value, index);
}
開發者ID:rockstorm101,項目名稱:GMAT,代碼行數:6,代碼來源:SolverSequenceCommand.cpp


注:本文中的GetParameterID函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。