本文整理汇总了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");
}
示例2:
/** @cond doxygenLibsbmlInternal */
void
Port::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBaseRef::addExpectedAttributes(attributes);
attributes.add("id");
attributes.add("name");
}
示例3:
/*
* Get the list of expected attributes for this element.
*/
void
SedDocument::addExpectedAttributes(ExpectedAttributes& attributes)
{
SedBase::addExpectedAttributes(attributes);
attributes.add("level");
attributes.add("version");
}
示例4:
/*
* Get the list of expected attributes for this element.
*/
void
SedSimulation::addExpectedAttributes(ExpectedAttributes& attributes)
{
SedBase::addExpectedAttributes(attributes);
attributes.add("id");
attributes.add("name");
}
示例5:
/** @cond doxygenLibsbmlInternal */
void
ColorDefinition::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBase::addExpectedAttributes(attributes);
attributes.add("id");
attributes.add("value");
}
示例6:
/*
* Get the list of expected attributes for this element.
*/
void
SedSubTask::addExpectedAttributes(ExpectedAttributes& attributes)
{
SedBase::addExpectedAttributes(attributes);
attributes.add("order");
attributes.add("task");
}
示例7:
/*
* Get the list of expected attributes for this element.
*/
void
Uncertainty::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBase::addExpectedAttributes(attributes);
attributes.add("id");
attributes.add("name");
}
示例8:
/*
* Get the list of expected attributes for this element.
*/
void
DynEventPlugin::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBasePlugin::addExpectedAttributes(attributes);
attributes.add("cboTerm");
attributes.add("applyToAll");
}
示例9:
/*
* Get the list of expected attributes for this element.
*/
void
AdvectionCoefficient::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBase::addExpectedAttributes(attributes);
attributes.add("variable");
attributes.add("coordinate");
}
示例10:
/*
* Get the list of expected attributes for this element.
*/
void
OutwardBindingSite::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBase::addExpectedAttributes(attributes);
attributes.add("bindingStatus");
attributes.add("component");
}
示例11:
/** @cond doxygenLibsbmlInternal */
void
CompartmentGlyph::addExpectedAttributes(ExpectedAttributes& attributes)
{
GraphicalObject::addExpectedAttributes(attributes);
attributes.add("compartment");
attributes.add("order");
}
示例12:
/*
* Get the list of expected attributes for this element.
*/
void
Domain::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBase::addExpectedAttributes(attributes);
attributes.add("id");
attributes.add("domainType");
}
示例13:
/*
* Get the list of expected attributes for this element.
*/
void
FbcSpeciesPlugin::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBasePlugin::addExpectedAttributes(attributes);
attributes.add("charge");
attributes.add("chemicalFormula");
}
示例14:
/*
* Get the list of expected attributes for this element.
*/
void
ImageData::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBase::addExpectedAttributes(attributes);
attributes.add("samplesLength");
attributes.add("dataType");
}
示例15:
/*
* Get the list of expected attributes for this element.
*/
void
GeneProductAssociation::addExpectedAttributes(ExpectedAttributes& attributes)
{
SBase::addExpectedAttributes(attributes);
attributes.add("id");
attributes.add("name");
}