Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:58

0001 #ifndef Cond_GenericSummary_h
0002 #define Cond_GenericSummary_h
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 
0006 #include "CondFormats/Common/interface/Summary.h"
0007 
0008 namespace cond {
0009 
0010   /** Short summary of condition payoad
0011   */
0012   class GenericSummary : public Summary {
0013   public:
0014     GenericSummary();
0015     ~GenericSummary() override;
0016 
0017     //
0018     explicit GenericSummary(std::string const& s);
0019 
0020     // short message (just content to be used in a table)
0021     void shortMessage(std::ostream& os) const override;
0022 
0023     // long message (to be used in pop-up, single views)
0024     void longMessage(std::ostream& os) const override;
0025 
0026   private:
0027     std::string m_me;
0028 
0029     COND_SERIALIZABLE;
0030   };
0031 
0032 }  // namespace cond
0033 
0034 #endif