#ifndef ROOT_TInspectorImp #define ROOT_TInspectorImp //+SEQ,CopyRight,T=NOINCLUDE. //////////////////////////////////////////////////////////////////////////////// // // // TInspectorImp // // // // ABC describing GUI independent object inspector (abstration mainly needed // // for Win32. On X11 systems it currently uses a standard TCanvas). // // // //////////////////////////////////////////////////////////////////////////////// #ifndef ROOT_Rtypes //*KEEP,Rtypes. #include "Rtypes.h" //*KEND. #endif class TObject; class TInspectorImp { public: TInspectorImp() { } TInspectorImp(const TObject *, UInt_t, UInt_t) { } virtual ~TInspectorImp() { } virtual void Hide() { } virtual void Show() { } ClassDef(TInspectorImp,0) //GUI independent inspector abc }; #endif