home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / BCBViewer / About.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-27  |  1.4 KB  |  42 lines

  1. //
  2. // Copyright (c) 1998 Colosseum Builders, Inc.
  3. // All rights reserved.
  4. //
  5. // Colosseum Builders, Inc. makes no warranty, expressed or implied
  6. // with regards to this software. It is provided as is.
  7. //
  8. // Permission to use, redistribute, and copy this file is granted
  9. // without a fee so long as as the following conditions are adhered to:
  10. //
  11. // o The user assumes all risk for using this software. The authors of this
  12. //   software shall be liable for no damages of any kind.
  13. //
  14. // o If the source code is distributed then this copyright notice must
  15. //   remain unaltered and any modification must be noted.
  16. //
  17. // o If this code is shipped in binary format the accompanying documentation
  18. //   should state that "this software is based, in part, on the work of
  19. //   Colosseum Builders, Inc."
  20. //
  21.  
  22. //
  23. //  Title:  Sample Image Viewer/Format Conversion Application
  24. //
  25. //  Author:  John M. Miano miano@colosseumbuilders.com
  26. //
  27. //---------------------------------------------------------------------
  28. #include <vcl.h>
  29. #pragma hdrstop
  30.  
  31. #include "About.h"
  32. //--------------------------------------------------------------------- 
  33. #pragma resource "*.dfm"
  34. TAboutBox *AboutBox;
  35. //--------------------------------------------------------------------- 
  36. __fastcall TAboutBox::TAboutBox(TComponent *Owner)
  37.     : TForm(Owner)
  38. {
  39. }
  40. //---------------------------------------------------------------------
  41.  
  42.