/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/ServiceRegistry/src/PlaceInPathContext.cc
17 строк
539 B
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
#include "FWCore/ServiceRegistry/interface/PlaceInPathContext.h" #include "FWCore/ServiceRegistry/interface/PathContext.h" #include <ostream> namespace edm { PlaceInPathContext::PlaceInPathContext(unsigned int placeInPath) : placeInPath_(placeInPath), pathContext_(nullptr) {} std::ostream& operator<<(std::ostream& os, PlaceInPathContext const& ppc) { os << "PlaceInPathContext " << ppc.placeInPath() << "\n"; if (ppc.pathContext()) { os << " " << *ppc.pathContext(); } return os; } } // namespace edm