/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/ServiceRegistry/src/ServiceToken.cc
86 строк
2 KB
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: ServiceRegistry // Class : ServiceToken // // Implementation: // <Notes on implementation> // // Original Author: Chris Jones // Created: Thu Sep 8 04:26:12 EDT 2005 // // system include files // user include files #include "FWCore/ServiceRegistry/interface/ServiceToken.h" #include "FWCore/ServiceRegistry/interface/ServicesManager.h" // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // //ServiceToken::ServiceToken() //{ //} // ServiceToken::ServiceToken(const ServiceToken& rhs) // { // // do actual copying here; // } //ServiceToken::~ServiceToken() //{ //} // // assignment operators // // const ServiceToken& ServiceToken::operator=(const ServiceToken& rhs) // { // //An exception safe implementation is // ServiceToken temp(rhs); // swap(rhs); // // return *this; // } // // member functions // void edm::ServiceToken::connectTo(edm::ActivityRegistry& iConnectTo) { if (nullptr != manager_.get()) { manager_->connectTo(iConnectTo); } } void edm::ServiceToken::connect(edm::ActivityRegistry& iConnectTo) { if (nullptr != manager_.get()) { manager_->connect(iConnectTo); } } void edm::ServiceToken::copySlotsTo(edm::ActivityRegistry& iConnectTo) { if (nullptr != manager_.get()) { manager_->copySlotsTo(iConnectTo); } } void edm::ServiceToken::copySlotsFrom(edm::ActivityRegistry& iConnectTo) { if (nullptr != manager_.get()) { manager_->copySlotsFrom(iConnectTo); } } // // const member functions // // // static member functions //