#ifndef ROO_PRINTABLE
#define ROO_PRINTABLE
class TNamed ;
#include "Riostream.h"
#include "Rtypes.h"
#include "TString.h"
class RooPrintable {
public:
  inline RooPrintable() { }
  inline virtual ~RooPrintable() { }
  enum PrintOption { InLine=0, OneLine=1, Standard=2, Shape=3, Verbose=4 } ;
  virtual void printToStream(ostream &os, PrintOption opt= Standard, TString indent= "") const;
  PrintOption parseOptions(Option_t *options) const;
  PrintOption lessVerbose(PrintOption opt) const;
  static void inLinePrint(ostream& os, const TNamed &named);
  static void oneLinePrint(ostream& os, const TNamed &named);
  static ostream& defaultStream(ostream *os= 0);
  ClassDef(RooPrintable,1) 
};
namespace RooFit {
ostream& operator<<(ostream& os, const RooPrintable& rp) ; 
}
#ifndef __CINT__
using RooFit::operator<< ;
#endif
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.