/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Utilities/interface/Presence.h
27 строк
828 B
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
#ifndef FWCore_Utilities_Presence_h #define FWCore_Utilities_Presence_h // -*- C++ -*- /* An interface class defining a presence. A presence is an object that an executable can instantiate at an early time in order to initialize various things. The destructor takes action to terminate the artifacts of the run() method. The prototypical use of this is to establish the MessageServicePresence. That class appears in MessageService, which is a plugin. By using this abstract class, we can arrange that cmsRun, in Framework, has no link dependency on MessageService. Instead, the MessageServicePresence is dynamically (run-time) loaded. */ namespace edm { class Presence { public: Presence() {} virtual ~Presence() = 0; }; } // namespace edm #endif // FWCore_Utilities_Presence_h