home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / SPLASH.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  33 lines

  1. //---------------------------------------------------------------------------
  2. // Borland C++Builder
  3. // Copyright (c) 1987, 1997 Borland International Inc.  All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. // splash.h
  6. //
  7. // VCL Class Browser
  8. //---------------------------------------------------------------------------
  9. //---------------------------------------------------------------------------
  10. //---------------------------------------------------------------------------
  11. #ifndef splashH
  12. #define splashH
  13. //---------------------------------------------------------------------------
  14. #include <vcl\Classes.hpp>
  15. #include <vcl\Controls.hpp>
  16. #include <vcl\StdCtrls.hpp>
  17. #include <vcl\Forms.hpp>
  18. #include <vcl\ExtCtrls.hpp>
  19. //---------------------------------------------------------------------------
  20. class TSplashScreen : public TForm
  21. {
  22. __published:    // IDE-managed Components
  23.     TPanel *Panel1;
  24.     TImage *Image1;
  25. private:    // User declarations
  26. public:        // User declarations
  27.     virtual __fastcall TSplashScreen(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern TSplashScreen *SplashScreen;
  31. //---------------------------------------------------------------------------
  32. #endif
  33.