// dialog window with version infos // M. Pallavicini created 29-12-2001 // #ifndef __ABOUTDLG_HH_ #define __ABOUTDLG_HH_ #include "TGFrame.h" #include "TGButton.h" class TAboutDialog : public TGTransientFrame { public: TAboutDialog(const TGWindow*, const TGWindow*, unsigned int, unsigned int, unsigned int = kVerticalFrame); ~TAboutDialog(); private: TGButton *fOK; ClassDef(TAboutDialog,0) }; #endif