#ifndef MARS_MLogo #define MARS_MLogo #ifndef __CINT__ #include #include "Xpm.h" class MLogo { Display *fDisplay; // display handle Window fLogoWindow; // window handle Pixmap fLogoPixmap; // pixmap handle long fMilliSec; // stayup time struct timeval fPopupTime; // time of popup void Wait() const; Pixmap GetLogo() const; public: MLogo(int millisec=777); ~MLogo() { Popdown(); } void Popup(); void Popdown(); }; #endif #endif