home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / SPLASH.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  851b  |  24 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef splashH
  3. #define splashH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TSplashScreen : public TForm
  12. {
  13. __published:    // IDE-managed Components
  14.     TPanel *Panel1;
  15.     TImage *Image1;
  16. private:    // User declarations
  17. public:        // User declarations
  18.     virtual __fastcall TSplashScreen(TComponent* Owner);
  19. };
  20. //---------------------------------------------------------------------------
  21. extern TSplashScreen *SplashScreen;
  22. //---------------------------------------------------------------------------
  23. #endif
  24.