#if !defined HERROR_H
#define HERROR_H

//-------------------------------------------------------------------------
//
// File name:       herror.h
// Subject:         Warning and error messages.
// Author:          D.Vasiliev (INFN-LNS, Catania) "vassili@lns.infn.it"
// Date:            February 2000
//
//-------------------------------------------------------------------------
//
// Description:
//
// This file cotains the declaration of the class HError.
// This class contains two static functions which open on the screen
// panels with warning or error messages. In case of a warning 
// the function returns integer value which tells the user which
// of the buttons "OK" or "Cancel" was clicked.
//
//-------------------------------------------------------------------------

#include "TObject.h"

class HError : public TObject {

 public:

  HError() : TObject() {}
  virtual ~HError() {}
  static void message(const Char_t* errmsg);
  static Int_t warning(const Char_t* wrnmsg);

 public:

  ClassDef(HError,0) //Error messages

};

#endif

Last change: Sat May 22 12:55:01 2010
Last generated: 2010-05-22 12:55

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.