CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GenericSummary.h
Go to the documentation of this file.
1 #ifndef Cond_GenericSummary_h
2 #define Cond_GenericSummary_h
3 
5 
6 namespace cond {
7 
10  class GenericSummary : public Summary {
11  public:
12 
14  virtual ~GenericSummary();
15 
16  //
17  explicit GenericSummary(std::string const & s);
18 
19  // short message (just content to be used in a table)
20  virtual void shortMessage(std::ostream & os) const;
21 
22  // long message (to be used in pop-up, single views)
23  virtual void longMessage(std::ostream & os) const;
24 
25 
26  private:
27 
28  std::string m_me;
29 
30  };
31 
32 
33 }
34 
35 
36 #endif
virtual void longMessage(std::ostream &os) const
virtual void shortMessage(std::ostream &os) const