当前位置: 首页>>代码示例>>C++>>正文


C++ ExpectedAttributes类代码示例

本文整理汇总了C++中ExpectedAttributes的典型用法代码示例。如果您正苦于以下问题:C++ ExpectedAttributes类的具体用法?C++ ExpectedAttributes怎么用?C++ ExpectedAttributes使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ExpectedAttributes类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1:

/** @cond doxygenLibsbmlInternal */
void
Replacing::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBaseRef::addExpectedAttributes(attributes);
  attributes.add("submodelRef");
  attributes.add("conversionFactor");
}
开发者ID:kirichoi,项目名称:roadrunner,代码行数:8,代码来源:Replacing.cpp

示例2:

/** @cond doxygenLibsbmlInternal */
void
Port::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBaseRef::addExpectedAttributes(attributes);
  attributes.add("id");
  attributes.add("name");
}
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:8,代码来源:Port.cpp

示例3:

/*
 * Get the list of expected attributes for this element.
 */
void
SedDocument::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SedBase::addExpectedAttributes(attributes);

  attributes.add("level");
  attributes.add("version");
}
开发者ID:0u812,项目名称:libSEDML,代码行数:11,代码来源:SedDocument.cpp

示例4:

/*
 * Get the list of expected attributes for this element.
 */
void
SedSimulation::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SedBase::addExpectedAttributes(attributes);

  attributes.add("id");
  attributes.add("name");
}
开发者ID:0u812,项目名称:libSEDML,代码行数:11,代码来源:SedSimulation.cpp

示例5:

/** @cond doxygenLibsbmlInternal */
void
ColorDefinition::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBase::addExpectedAttributes(attributes);

  attributes.add("id");
  attributes.add("value");
}
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:9,代码来源:ColorDefinition.cpp

示例6:

/*
 * Get the list of expected attributes for this element.
 */
void
SedSubTask::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SedBase::addExpectedAttributes(attributes);

  attributes.add("order");
  attributes.add("task");
}
开发者ID:0u812,项目名称:libSEDML,代码行数:11,代码来源:SedSubTask.cpp

示例7:

/*
 * Get the list of expected attributes for this element.
 */
void
Uncertainty::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBase::addExpectedAttributes(attributes);

  attributes.add("id");
  attributes.add("name");
}
开发者ID:TheCoSMoCompany,项目名称:biopredyn,代码行数:11,代码来源:Uncertainty.cpp

示例8:

/*
 * Get the list of expected attributes for this element.
 */
void
DynEventPlugin::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBasePlugin::addExpectedAttributes(attributes);

  attributes.add("cboTerm");
  attributes.add("applyToAll");
}
开发者ID:kirichoi,项目名称:roadrunner,代码行数:11,代码来源:DynEventPlugin.cpp

示例9:

/*
 * Get the list of expected attributes for this element.
 */
void
AdvectionCoefficient::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBase::addExpectedAttributes(attributes);

  attributes.add("variable");
  attributes.add("coordinate");
}
开发者ID:kirichoi,项目名称:roadrunner,代码行数:11,代码来源:AdvectionCoefficient.cpp

示例10:

/*
 * Get the list of expected attributes for this element.
 */
void
OutwardBindingSite::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBase::addExpectedAttributes(attributes);

  attributes.add("bindingStatus");
  attributes.add("component");
}
开发者ID:kirichoi,项目名称:roadrunner,代码行数:11,代码来源:OutwardBindingSite.cpp

示例11:

/** @cond doxygenLibsbmlInternal */
void
CompartmentGlyph::addExpectedAttributes(ExpectedAttributes& attributes)
{
  GraphicalObject::addExpectedAttributes(attributes);

  attributes.add("compartment");
  attributes.add("order");
}
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:9,代码来源:CompartmentGlyph.cpp

示例12:

/*
 * Get the list of expected attributes for this element.
 */
void
Domain::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBase::addExpectedAttributes(attributes);

  attributes.add("id");
  attributes.add("domainType");
}
开发者ID:kirichoi,项目名称:roadrunner,代码行数:11,代码来源:Domain.cpp

示例13:

/*
 * Get the list of expected attributes for this element.
 */
void
FbcSpeciesPlugin::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBasePlugin::addExpectedAttributes(attributes);

  attributes.add("charge");
  attributes.add("chemicalFormula");
}
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:11,代码来源:FbcSpeciesPlugin.cpp

示例14:

/*
 * Get the list of expected attributes for this element.
 */
void
ImageData::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBase::addExpectedAttributes(attributes);

  attributes.add("samplesLength");
  attributes.add("dataType");
}
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:11,代码来源:ImageData.cpp

示例15:

/*
 * Get the list of expected attributes for this element.
 */
void
GeneProductAssociation::addExpectedAttributes(ExpectedAttributes& attributes)
{
  SBase::addExpectedAttributes(attributes);

  attributes.add("id");
  attributes.add("name");
}
开发者ID:copasi,项目名称:copasi-dependencies,代码行数:11,代码来源:GeneProductAssociation.cpp


注:本文中的ExpectedAttributes类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。