本文整理汇总了C++中ParameterSet::parent方法的典型用法代码示例。如果您正苦于以下问题:C++ ParameterSet::parent方法的具体用法?C++ ParameterSet::parent怎么用?C++ ParameterSet::parent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ParameterSet
的用法示例。
在下文中一共展示了ParameterSet::parent方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: findParameterSet
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
ParameterSet* Config::findParameterSet(const std::string& publicID) const {
ParameterSet* object = ParameterSet::Cast(PublicObject::Find(publicID));
if ( object != NULL && object->parent() == this )
return object;
return NULL;
}
示例2: updateChild
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
bool Config::updateChild(Object* child) {
ParameterSet* parameterSetChild = ParameterSet::Cast(child);
if ( parameterSetChild != NULL ) {
ParameterSet* parameterSetElement
= ParameterSet::Cast(PublicObject::Find(parameterSetChild->publicID()));
if ( parameterSetElement && parameterSetElement->parent() == this ) {
*parameterSetElement = *parameterSetChild;
return true;
}
return false;
}
ConfigModule* configModuleChild = ConfigModule::Cast(child);
if ( configModuleChild != NULL ) {
ConfigModule* configModuleElement
= ConfigModule::Cast(PublicObject::Find(configModuleChild->publicID()));
if ( configModuleElement && configModuleElement->parent() == this ) {
*configModuleElement = *configModuleChild;
return true;
}
return false;
}
return false;
}
示例3: add
// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
bool Config::add(ParameterSet* parameterSet) {
if ( parameterSet == NULL )
return false;
// Element has already a parent
if ( parameterSet->parent() != NULL ) {
SEISCOMP_ERROR("Config::add(ParameterSet*) -> element has already a parent");
return false;
}
if ( PublicObject::IsRegistrationEnabled() ) {
ParameterSet* parameterSetCached = ParameterSet::Find(parameterSet->publicID());
if ( parameterSetCached ) {
if ( parameterSetCached->parent() ) {
if ( parameterSetCached->parent() == this )
SEISCOMP_ERROR("Config::add(ParameterSet*) -> element with same publicID has been added already");
else
SEISCOMP_ERROR("Config::add(ParameterSet*) -> element with same publicID has been added already to another object");
return false;
}
else
parameterSet = parameterSetCached;
}
}
// Add the element
_parameterSets.push_back(parameterSet);
parameterSet->setParent(this);
// Create the notifiers
if ( Notifier::IsEnabled() ) {
NotifierCreator nc(OP_ADD);
parameterSet->accept(&nc);
}
// Notify registered observers
childAdded(parameterSet);
return true;
}