#ifndef ROOT_TSessionLogView
#define ROOT_TSessionLogView
#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
#ifndef ROOT_TGButton
#include "TGButton.h"
#endif
#ifndef ROOT_TTextView
#include "TGTextView.h"
#endif
class TSessionViewer;
class TSessionLogView : public TGTransientFrame {
private:
   TSessionViewer       *fViewer;   
   TGTextView           *fTextView; 
   TGTextButton         *fClose;    
   TGLayoutHints        *fL1;       
   TGLayoutHints        *fL2;       
public:
   TSessionLogView(TSessionViewer *viewer, UInt_t w, UInt_t h);
   virtual ~TSessionLogView();
   void   AddBuffer(const char *buffer);
   void   LoadBuffer(const char *buffer);
   void   LoadFile(const char *file);
   Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
   void   CloseWindow();
   void   ClearLogView();
   void   Popup();
   void   SetTitle();
   ClassDef(TSessionLogView, 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.