CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/CondFormats/Common/interface/GenericSummary.h

Go to the documentation of this file.
00001 #ifndef Cond_GenericSummary_h
00002 #define Cond_GenericSummary_h
00003 
00004 #include "CondFormats/Common/interface/Summary.h"
00005 
00006 namespace cond {
00007 
00010   class GenericSummary : public Summary {
00011   public:
00012     
00013     GenericSummary();
00014     virtual ~GenericSummary();
00015     
00016     //
00017     explicit GenericSummary(std::string const & s);
00018     
00019     // short message (just content to be used in a table)
00020     virtual void shortMessage(std::ostream & os) const;
00021     
00022     // long message (to be used in pop-up, single views)
00023     virtual void longMessage(std::ostream & os) const;
00024     
00025     
00026   private:
00027     
00028     std::string m_me;
00029     
00030   };
00031   
00032 
00033 }
00034 
00035 
00036 #endif