/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/Common/interface/Summary.h
34 строки
693 B
Cms Build
Clang-Format
22 май 2019, 04:56
22 май 2019, 04:56
28f175a
Код
Авторство
О чём код?
#ifndef Cond_Summary_h #define Cond_Summary_h #include "CondFormats/Serialization/interface/Serializable.h" #include <string> #include <iosfwd> namespace cond { /** Base class for summary of condition payoad */ class Summary { public: Summary(); virtual ~Summary(); // short message (just content to be used in a table) virtual void shortMessage(std::ostream& os) const = 0; // long message (ot be used in pop-up, single views) virtual void longMessage(std::ostream& os) const = 0; COND_SERIALIZABLE; }; } // namespace cond inline std::ostream& operator<<(std::ostream& os, cond::Summary const& s) { s.shortMessage(os); return os; } #endif