#ifndef ROOT_TProofProgressLog
#define ROOT_TProofProgressLog
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
class TGTextView;
class TGTextButton;
class TProofProgressDialog;
class TProofProgressLog : public TGTransientFrame {
private:
   TGTextView           *fText;   
   TGTextButton         *fClose;  
   TProofProgressDialog *fDialog; 
public:
   TProofProgressLog(TProofProgressDialog *d, Int_t w = 700, Int_t h = 300);
   virtual ~TProofProgressLog();
   void   LoadBuffer(const char *buffer);
   void   AddBuffer(const char *buffer);
   void   LoadFile(const char *file);
   void   Clear(Option_t * = 0);
   void   Popup();
   
   void   CloseWindow();
   ClassDef(TProofProgressLog,0) 
};
#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.