#ifndef ROOT_TControlBarImp
#define ROOT_TControlBarImp
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class TControlBar;
class TControlBarButton;
class TControlBarImp {
protected:
   TControlBar *fControlBar; 
   Int_t        fXpos;       
   Int_t        fYpos;       
   TControlBarButton *fClicked; 
   
public:
   TControlBarImp(TControlBar *c, const char * = "") : fControlBar(c) { }
   TControlBarImp(TControlBar *c, const char *, Int_t, Int_t) : fControlBar(c) { }
   virtual ~TControlBarImp() { }
   virtual TControlBar *GetControlBar() { return fControlBar; }
   virtual TControlBarButton *GetClicked() { return fClicked; } 
   virtual void Create() { }
   virtual void Hide() { }
   virtual void Show() { }
   virtual void SetFont(const char * ) { }
   virtual void SetTextColor(const char * ) { }
   virtual void SetButtonState(const char * , Int_t ) { }
   ClassDef(TControlBarImp,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.