/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/src/ProducesCollector.cc
20 строк
820 B
W. David Dagenhart
Initial implementation of ProducesCollector
10 окт 2019, 00:33
10 окт 2019, 00:33
6ce8f67
Код
Авторство
О чём код?
#include "FWCore/Framework/interface/ProducesCollector.h" namespace edm { ProducesCollector::ProducesCollector(ProducesCollector const& other) : helper_(get_underlying(other.helper_)) {} ProducesCollector& ProducesCollector::operator=(ProducesCollector const& other) { helper_ = get_underlying(other.helper_); return *this; } ProductRegistryHelper::BranchAliasSetter ProducesCollector::produces(const TypeID& id, std::string instanceName, bool recordProvenance) { return helper_->produces(id, std::move(instanceName), recordProvenance); } ProducesCollector::ProducesCollector(ProductRegistryHelper* helper) : helper_(helper) {} } // namespace edm